forked from boot-clj/boot-new
-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
deps.edn
26 lines (23 loc) · 1.23 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
{:deps {clj-commons/pomegranate {:mvn/version "1.2.24"}
org.clojure/tools.cli {:mvn/version "1.1.230"}
org.clojure/tools.deps {:mvn/version "0.21.1449"}
stencil/stencil {:mvn/version "0.5.0"}
;; add this because tools.deps.alpha no longer includes it
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}}
:tools/usage {:ns-default clj-new}
:aliases {:clj-new {:exec-fn clj-new/create
:exec-args {:template "app"}}
:create {:exec-fn clj-new/create}
:generate {:exec-fn clj-new/generate}
:new-app {:exec-fn clj-new/create
:exec-args {:template "app"}}
:new-lib {:exec-fn clj-new/create
:exec-args {:template "lib"}}
:test {:extra-paths ["test"]
:extra-deps {org.clojure/test.check {:mvn/version "1.1.1"}
io.github.cognitect-labs/test-runner
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}}
;; for help: clojure -A:deps -T:build help/doc
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}}}