-
Notifications
You must be signed in to change notification settings - Fork 79
/
deps.edn
43 lines (35 loc) · 2.35 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
37
38
39
40
41
42
43
{:mvn/repos {"central" {:url "https://repo1.maven.org/maven2/"}
"clojars" {:url "https://clojars.org/repo"}}
:aliases {:dev {:extra-paths ["development/src"]
:extra-deps {; Components
poly/article {:local/root "components/article"}
poly/comment {:local/root "components/comment"}
poly/database {:local/root "components/database"}
poly/env {:local/root "components/env"}
poly/log {:local/root "components/log"}
poly/profile {:local/root "components/profile"}
poly/spec {:local/root "components/spec"}
poly/tag {:local/root "components/tag"}
poly/user {:local/root "components/user"}
; Bases
poly/rest-api {:local/root "bases/rest-api"}
; Development dependencies
djblue/portal {:mvn/version "0.35.1"}
clj-http/clj-http {:mvn/version "3.12.3"}
org.clojure/clojure {:mvn/version "1.11.1"}
org.slf4j/slf4j-nop {:mvn/version "2.0.3"}}}
:test {:extra-paths ["components/article/test"
"components/comment/test"
"components/profile/test"
"components/tag/test"
"components/user/test"
"bases/rest-api/test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}}}
:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.3"}
io.github.seancorfield/build-clj {:git/tag "v0.9.2"
:git/sha "9c9f078"}
org.clojure/tools.deps {:mvn/version "0.16.1281"}}
:paths []
:ns-default build}}}