-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdeps.edn
67 lines (49 loc) · 1.25 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
62
63
64
65
66
67
{:paths ["src"]
:deps
{blaze/db
{:local/root "../db"}
com.fasterxml.jackson.module/jackson-module-jaxb-annotations
{:mvn/version "2.18.3"
:exclusions [javax.xml.bind/jaxb-api]}
com.fasterxml.jackson.dataformat/jackson-dataformat-xml
{:mvn/version "2.18.3"}
info.cqframework/cql-to-elm
{:mvn/version "2.11.0"
:exclusions
[org.antlr/antlr4
xpp3/xpp3
xpp3/xpp3_xpath]}
info.cqframework/elm-jackson
{:mvn/version "2.11.0"
:exclusions [org.glassfish/javax.json]}
info.cqframework/model-jackson
{:mvn/version "2.11.0"}
info.cqframework/quick
{:mvn/version "2.11.0"}
org.apache.commons/commons-text
{:mvn/version "1.13.0"}
systems.uom/systems-quantity
{:mvn/version "2.1"}
systems.uom/systems-ucum
{:mvn/version "2.1"}}
:aliases
{:test
{:extra-paths ["test"]
:extra-deps
{blaze/db-stub
{:local/root "../db-stub"}}}
:test-perf
{:extra-paths ["test-perf"]
:extra-deps
{criterium/criterium
{:mvn/version "0.4.6"}}}
: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"}}
:main-opts ["-m" "kaocha.runner" "--profile" "coverage"]}}}