-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
35 lines (26 loc) · 2.08 KB
/
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
28
29
30
31
32
33
34
35
{:paths ["src/main/clojure" "src/main/resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/tools.logging {:mvn/version "1.1.0"}
com.xtdb/xtdb-core {:mvn/version "1.20.0"}
io.tarantool/cartridge-driver {:mvn/version "0.6.0"}}
:aliases {:develop {:extra-paths ["src/develop/clojure" "src/develop/resources"]
:extra-deps {nrepl/nrepl {:mvn/version "0.8.3"}
hashp/hashp {:mvn/version "0.2.1"}
integrant/integrant {:mvn/version "0.8.0"}
integrant/repl {:mvn/version "0.3.2"}
org.slf4j/slf4j-simple {:mvn/version "1.7.32"}
com.xtdb/xtdb-http-server {:mvn/version "1.20.0"}}
:main-opts ["--main" "nrepl.cmdline"]}
:test {:extra-paths ["src/test/clojure" "src/test/resources"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.60.945"}
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}}
:main-opts ["--main" "kaocha.runner"]}
:test/unit {:main-opts ["--main" "kaocha.runner" "--focus" "unit"]}
:test/integration {:main-opts ["--main" "kaocha.runner" "--focus" "integration"]}
:build {:extra-paths ["."]
:extra-deps {io.github.seancorfield/build-clj {:git/tag "v0.6.0" :git/sha "2451bea"}}
:ns-default build}
:nop {:extra-deps {org.slf4j/slf4j-nop {:mvn/version "1.7.32"}}}
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "1.3.0"}}
:main-opts ["--main" "antq.core"]}
:outdated/upgrade {:main-opts ["--main" "antq.core" "--upgrade" "--force"]}}}