-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathdeps.edn
104 lines (78 loc) · 2.13 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{:paths ["src" "resources"]
:deps
{blaze/async
{:local/root "../async"}
blaze/cql
{:local/root "../cql"}
blaze/interaction
{:local/root "../interaction"}
blaze/job-scheduler
{:local/root "../job-scheduler"}
blaze/job-async-interaction
{:local/root "../job-async-interaction"}
blaze/job-compact
{:local/root "../job-compact"}
blaze/job-re-index
{:local/root "../job-re-index"}
blaze/luid
{:local/root "../luid"}
blaze/module-base
{:local/root "../module-base"}
blaze/rest-util
{:local/root "../rest-util"}
blaze/rocksdb
{:local/root "../rocksdb"}
blaze/spec
{:local/root "../spec"}
fi.metosin/reitit-openapi
{:mvn/version "0.7.2"
:exclusions [javax.xml.bind/jaxb-api]}
ca.uhn.hapi.fhir/hapi-fhir-validation
{:mvn/version "7.6.1"
:exclusions
[net.sf.saxon/Saxon-HE
org.ogce/xpp3
ognl/ognl
org.attoparser/attoparser
org.unbescape/unbescape
org.xerial/sqlite-jdbc
commons-beanutils/commons-beanutils
org.apache.httpcomponents/httpclient
info.cqframework/cql
info.cqframework/qdm
info.cqframework/quick
info.cqframework/cql-to-elm
info.cqframework/elm
info.cqframework/model
org.apache.commons/commons-collections4]}
;; CVE-2024-26308, we need at least 1.26.0
org.apache.commons/commons-compress
{:mvn/version "1.27.1"}
ca.uhn.hapi.fhir/hapi-fhir-structures-r4
{:mvn/version "7.6.1"
:exclusions [com.google.code.findbugs/jsr305]}
ca.uhn.hapi.fhir/hapi-fhir-validation-resources-r4
{:mvn/version "7.6.1"}
ca.uhn.hapi.fhir/hapi-fhir-caching-caffeine
{:mvn/version "7.6.1"}
org.fhir/ucum
{:mvn/version "1.0.9"
:exclusions [xpp3/xpp3 xpp3/xpp3_xpath]}
com.fasterxml.jackson.datatype/jackson-datatype-jsr310
{:mvn/version "2.18.3"}}
:aliases
{:test
{:extra-paths ["test"]
:extra-deps
{blaze/db-stub
{:local/root "../db-stub"}}}
: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"]}}}