forked from clojure/tools.build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
38 lines (34 loc) · 1.5 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
38
{:paths ["src/main/clojure" "src/main/resources"]
:deps
{org.clojure/clojure {:mvn/version "1.10.3"}
org.clojure/tools.deps.alpha {:mvn/version "0.12.1109"}
;org.clojure/tools.deps.alpha {:git/url "https://github.com/clojure/tools.deps.alpha.git"
; :sha "459222ca6e4fce91cf5838435589a028cedbc784"}
org.clojure/tools.namespace {:mvn/version "1.2.0"}
org.slf4j/slf4j-nop {:mvn/version "1.7.32"}}
:aliases
{;; Run all tests
;; clj -X:test
:test {:extra-paths ["src/test/clojure"]
;;:extra-deps {io.github.cognitect-labs/test-runner
;; {:local/root "../test-runner"}}
:extra-deps {io.github.cognitect-labs/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "705ad25bbf0228b1c38d0244a36001c2987d7337"}}
:exec-fn cognitect.test-runner.api/test
:exec-args {:dirs ["src/test/clojure"]
:patterns [".*"]}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}
;; Regenerate docs in docs/
;; clj -X:docs
:docs {:extra-deps {codox/codox {:mvn/version "0.10.7"}}
:exec-fn codox.main/generate-docs
:exec-args {:source-paths ["src/main/clojure"]
:namespaces [clojure.tools.build.api]
:output-path "docs"}}
;; Lint the source
;; clj -M:lint
:lint {:replace-deps {clj-kondo/clj-kondo {:mvn/version "2022.01.13"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}
}
}