-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeps.edn
More file actions
30 lines (26 loc) · 846 Bytes
/
deps.edn
File metadata and controls
30 lines (26 loc) · 846 Bytes
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
{:paths ["src"]
:deps
{
org.clojure/clojure {:mvn/version "1.12.4"}
org.clojure/tools.deps {:mvn/version "0.29.1598"} ;; {:local/root "../tools.deps"}
org.clojure/tools.gitlibs {:mvn/version "2.6.212"}
org.slf4j/slf4j-nop {:mvn/version "1.7.36"}
}
:tools/usage
{
:ns-default clojure.tools.tools.api
}
:aliases
{
;; Build docs: clj -X:codox
:codox {:extra-deps {codox/codox {:mvn/version "0.10.8"}}
:exec-fn codox.main/generate-docs
:exec-args {:source-paths ["src"]
:namespaces [clojure.tools.tools.api]
:output-path "docs"}}
;; Run tests: clj -X:test
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:exec-fn cognitect.test-runner.api/test}
}
}