-
Notifications
You must be signed in to change notification settings - Fork 11
/
deps.edn
21 lines (18 loc) · 1010 Bytes
/
deps.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{:paths ["src" "res"]
:deps {org.clojure/clojure {:mvn/version "1.12.0" :mvn/scope "provided"}}
:aliases
{:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.0"}
slipset/deps-deploy {:mvn/version "0.2.2"}}
:ns-default build}
:1.10 {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}}
:1.11 {:override-deps {org.clojure/clojure {:mvn/version "1.11.4"}}}
:1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}}
:dev {:extra-paths ["test"]
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}
:test {:extra-paths ["test"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1"
:git/sha "dfb30dd"}
;; Dependency only to test the error skipping behavior.
org.spdx/java-spdx-library {:mvn/version "1.1.2"}}
:exec-fn cognitect.test-runner.api/test
:jvm-opts ["-Djdk.attach.allowAttachSelf"]}}}