-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdeps.edn
42 lines (32 loc) · 962 Bytes
/
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
{:paths ["src" "resources"]
:deps
{blaze/byte-buffer
{:local/root "../byte-buffer"}
com.google.guava/guava
{:mvn/version "33.4.0-jre"
:exclusions
[com.google.code.findbugs/jsr305
org.checkerframework/checker-qual
com.google.errorprone/error_prone_annotations
com.google.j2objc/j2objc-annotations]}
com.fasterxml.jackson.core/jackson-databind
{:mvn/version "2.18.3"}}
:aliases
{:test
{:extra-paths ["test"]
:extra-deps
{blaze/test-util
{:local/root "../test-util"}}}
:kaocha
{:extra-deps
{lambdaisland/kaocha
{:mvn/version "1.91.1392"}}
:main-opts ["-m" "kaocha.runner"]}
:coverage
{:extra-deps
{lambdaisland/kaocha-cloverage
{:mvn/version "1.1.89"}
;; TODO: remove after Cloverage reflection problems are solved. https://github.com/cloverage/cloverage/issues/345
org.clojure/clojure
{:mvn/version "1.11.4"}}
:main-opts ["-m" "kaocha.runner" "--profile" "coverage"]}}}