-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deps.edn
36 lines (26 loc) · 1.68 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
36
{:paths []
:deps {}
:aliases {:build {:deps {io.github.clojure/tools.build {:git/tag "v0.9.4"
:git/sha "76b78fe"}
org.clojure/tools.deps {:mvn/version "0.19.1432"}}
:ns-default build}
:repl {:extra-deps {nrepl/nrepl {:mvn/version "1.0.0"}
cider/cider-nrepl {:mvn/version "0.34.0"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware]"
"-i"]}
:dev {:extra-deps {poly/spec {:local/root "components/spec"}
poly/healthcheck {:local/root "components/healthcheck"}
poly/customer {:local/root "components/customer"}
poly/system {:local/root "components/system"}
poly/logging {:local/root "components/logging"}
poly/database {:local/root "components/database"}
poly/agent {:local/root "bases/agent"}
poly/server {:local/root "bases/server"}
integrant/repl {:mvn/version "0.3.3"}
org.clojure/clojure {:mvn/version "1.12.0"}
migratus/migratus {:mvn/version "1.6.3"}}
:extra-paths ["development/src" "development/resources"]}
:test {:extra-paths ["components/customer/test"]}
:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.20"}}}}}