-
Notifications
You must be signed in to change notification settings - Fork 2
/
deps.edn
61 lines (57 loc) · 2.45 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
:paths ["src" "resources"]
:deps {
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.60"
:exclusions [org.msgpack/msgpack]
;; ... per nvd warning CVE-2022-41719
}
}
:aliases {
;;;;;;;;;;;;;;;;
;; JVM SUPPORT
;;;;;;;;;;;;;;;;
;; Informs :build alias, below
: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"}
}
}
;; Building utilities
;; invoke with -T:build
;; for help: clojure -A:deps -T:build help/doc
:build {
:deps {
io.github.seancorfield/build-clj {:git/tag "v0.9.2"
:git/sha "9c9f078"
}
org.clojure/tools.deps {:mvn/version "0.18.1335"}
}
:ns-default build
}
;;;;;;;;;;;;;;;;;;;;;;;;;;
;; CLOJURESCRIPT SUPPORT
;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Test cljs version with `clojure -M:test-cljs`
;; Get help with clojure -M:test-cljs --help
;; See also https://github.com/Olical/cljs-test-runner
:test-cljs {
:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"}}
:extra-paths ["test"]
:main-opts ["-m" "cljs-test-runner.main"]
}
;; SHADOW-CLJS SUPPORT
;; Alias referenced in shadow-cljs.edn
:shadow {
:extra-deps {thheller/shadow-cljs {:mvn/version "2.22.10"}}
:extra-paths ["test"]
}
} ;; aliases
}
;; NVD notes
;; CVE-2023-0247 is flagged for clojurescript-1.11.60.jar, but seems to pertain to a go repo
;; CVE-2022-45688 jackson-core-2.8.7.jar. Excluding this breaks tests.
;; linked to https://github.com/stleary/JSON-java/issues/708