-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeps.edn
More file actions
46 lines (39 loc) · 2.15 KB
/
deps.edn
File metadata and controls
46 lines (39 loc) · 2.15 KB
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
44
45
46
{:aliases
{:dev
{:extra-paths ["development/src"
"development/resources"]
:extra-deps {;; Bricks
polylith+integrant/app {:local/root "bases/app"}
polylith+integrant/config {:local/root "components/config"}
polylith+integrant/embedded-pg {:local/root "components/embedded-pg"}
polylith+integrant/logic {:local/root "components/logic"}
polylith+integrant/supplier {:local/root "components/supplier"}
polylith+integrant/timepiece {:local/root "components/timepiece"}
;; Clojure
org.clojure/clojure {:mvn/version "1.12.0"}
;; Logging (Java)
org.apache.logging.log4j/log4j-api {:mvn/version "2.24.3"}
org.apache.logging.log4j/log4j-core {:mvn/version "2.24.3"}
org.apache.logging.log4j/log4j-1.2-api {:mvn/version "2.24.3"}
org.apache.logging.log4j/log4j-jul {:mvn/version "2.24.3"}
org.apache.logging.log4j/log4j-jcl {:mvn/version "2.24.3"}
org.apache.logging.log4j/log4j-slf4j2-impl {:mvn/version "2.24.3"}
;; Dev Tools
integrant/repl {:mvn/version "0.4.0"}}}
:test
{:extra-paths ["bases/app/test"
"bases/app/test-resources"
"components/config/test"
"components/config/test-resources"
"components/embedded-pg/test"
"components/logic/test"
"components/supplier/test"
"components/timepiece/test"]}
;; NB: This one is required for local development of any scripts (build, bb, etc.).
:scripts
{:extra-paths ["build.clj"]
:extra-deps {io.github.clojure/tools.build {:mvn/version "0.10.6"
:exclusions [org.slf4j/slf4j-nop]}}}
:build
{:deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}}
:ns-default build}}}