-
Notifications
You must be signed in to change notification settings - Fork 6
/
deps.edn
37 lines (33 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
36
37
{:aliases
{:dev {:extra-paths ["development/src" "development/poly"]
:extra-deps {org.clojure/clojure {:mvn/version "1.11.4"}
polylith/clj-poly
{:git/url "https://github.com/polyfy/polylith"
:git/sha "aece34ab40255fd40038abbff79433fdf7cd5759"
:deps/root "projects/poly"}
;; poly modules
polylith-kaocha.bricks/example {:local/root "bases/example"}
polylith-kaocha.bricks/kaocha-resource-config-loader {:local/root "components/kaocha-resource-config-loader"}
polylith-kaocha.bricks/kaocha-test-runner {:local/root "components/kaocha-test-runner"}
polylith-kaocha.bricks/kaocha-wrapper {:local/root "components/kaocha-wrapper"}
polylith-kaocha.bricks/test-runner {:local/root "bases/test-runner"}
polylith-kaocha.bricks/util {:local/root "components/util"}}}
:test {:extra-paths [;; poly modules
"bases/example/test"
"components/kaocha-resource-config-loader/test"
"components/kaocha-resource-config-loader/test-resources"
"components/kaocha-test-runner/test"
"components/kaocha-wrapper/test"
"components/util/test"
"projects/example/test-resources"]
:extra-deps {lambdaisland/kaocha-cloverage {:mvn/version "1.1.89"
:exclusions [lambdaisland/kaocha]}}}
:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-paths ["development/poly"]
:extra-deps {polylith/clj-poly
{:git/url "https://github.com/polyfy/polylith"
:git/sha "aece34ab40255fd40038abbff79433fdf7cd5759"
:deps/root "projects/poly"}
polylith-kaocha/test-runner
{:local/root "projects/test-runner"
:exclusions [polylith/clj-poly]}}}}}