-
Notifications
You must be signed in to change notification settings - Fork 4
/
deps.edn
27 lines (24 loc) · 997 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
:paths [
; in case you get the error `All dirs should be absolute`, you forgot to define an absolute project-dir like so:
; clojure -X:build :project-dir "\"$(pwd)\""
"src"
"resources"
]
:deps { org.clojure/core.logic {:mvn/version "1.0.0"}
com.github.seancorfield/honeysql {:mvn/version "2.4.1011"}
}
;; These are needed for the Athena and Redshift drivers in order to build them. Maven repos from subprojects do not
;; get copied over -- see
;; https://ask.clojure.org/index.php/10726/deps-manifest-dependencies-respect-repos-dependent-project
:mvn/repos
{"athena" {:url "https://s3.amazonaws.com/maven-athena"}
"redshift" {:url "https://s3.amazonaws.com/redshift-maven-repository/release"}}
; build the driver with `clojure -X:build :project-dir "\"$(pwd)\""`
:aliases
{:dev
{:extra-deps
{ io.github.metabase/metabase { :git/tag "v0.46.6", :git/sha "1bb88f5" } }
}
}
}