-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathdeps.edn
More file actions
22 lines (19 loc) · 878 Bytes
/
deps.edn
File metadata and controls
22 lines (19 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{:deps {dev.failsafe/failsafe {:mvn/version "3.3.2"}
org.clojure/spec.alpha {:mvn/version "0.6.249"}
org.clojure/clojure {:mvn/version "1.12.5"}}
:paths ["src"]
:aliases {:test
{:extra-paths ["test"]
:extra-deps {lambdaisland/kaocha {:mvn/version "1.91.1392"}}
:main-opts ["-m" "kaocha.runner"]}
:dev {}
:codox
{:extra-deps {codox/codox {:mvn/version "0.10.8"}}
:exec-fn codox.main/generate-docs
:exec-args {:source-paths ["src"]
:source-uri "https://github.com/sunng87/diehard/blob/master/{filepath}#L{line}"
:metadata {:doc/format :markdown}}}
:build
{:extra-deps {com.github.liquidz/build.edn {:mvn/version "0.11.266"}}
:ns-default build-edn.main
:exec-args {}}}}