-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
34 lines (25 loc) · 1.93 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
{:paths ["src/main/clojure" "src/main/resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
babashka/process {:mvn/version "0.1.1"}
selmer/selmer {:mvn/version "1.12.50"}
aero/aero {:mvn/version "1.1.6"}}
:aliases {:bench {:extra-paths ["src/bench/clojure" "src/bench/resources"]
:jvm-opts ["-server" "-Xmx4096m" "-Dclojure.compiler.direct-linking=true"]}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "0.9.0"}}
:main-opts ["--main" "nrepl.cmdline"]}
:develop {:extra-paths ["src/develop/clojure" "src/develop/resources"]
:extra-deps {criterium/criterium {:mvn/version "0.4.6"}
hashp/hashp {:mvn/version "0.2.1"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}
:test {:extra-paths ["src/test/clojure" "src/test/resources"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.64.1010"}
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}}
:main-opts ["--main" "kaocha.runner"]}
:build {:extra-paths ["."]
:extra-deps {io.github.seancorfield/build-clj {:git/tag "v0.8.0" :git/sha "9bd8b8a"}
io.lazy-cat/tools.project {:local/root "."}}
:ns-default build}
:nop {:extra-deps {org.slf4j/slf4j-nop {:mvn/version "1.7.36"}}}
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "1.6.1"}}
:main-opts ["--main" "antq.core"]}
:outdated:upgrade {:main-opts ["--main" "antq.core" "--upgrade" "--force"]}}}