-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
36 lines (29 loc) · 961 Bytes
/
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
["src" "resources"]
:deps
{org.clojure/clojure {:mvn/version "1.10.3"}}
:aliases
{:service
{:main-opts ["-m" "practicalli.licenses-assemble"]}
:greet
{:ns-default practicalli.licenses-assemble
:exec-fn greet
:exec-args {:name "Clojure"}}
:build
{:deps {io.github.seancorfield/build-clj
{:git/tag "v0.6.3" :git/sha "9b8e09b"
;; since we're building an app uberjar, we do not
;; need deps-deploy for clojars.org deployment:
:deps/root "slim"}}
:ns-default build}
:test/cognitect
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.0" :git/sha "48c3c67"}}}}
:test/kaocha
{:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
lambdaisland/kaocha {:mvn/version "1.63.998"}}
:exec-fn kaocha.runner/exec-fn}
#_()}