-
Notifications
You must be signed in to change notification settings - Fork 0
/
deps.edn
58 lines (50 loc) · 2.72 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
{:paths ["src" "resources" "zrc"]
:deps {klog/klog {:git/url "https://github.com/HealthSamurai/klog"
:sha "8151622626915254bbd6b5ea0d0246d691e44010"}
org.clojure/clojure {:mvn/version "1.11.1"}
progrock/progrock {:mvn/version "0.1.2"}
org.clojure/data.csv {:mvn/version "1.0.1"}
cheshire/cheshire {:mvn/version "5.11.0"}
zen-lang/zen {:git/url "https://github.com/zen-lang/zen"
:sha "e4d19ffbf845746f31cec4db485a8d04f7b877f5"}
com.github.seancorfield/next.jdbc {:mvn/version "1.3.847"}
org.postgresql/postgresql {:mvn/version "42.5.1"}
com.rpl/specter {:mvn/version "1.1.4"}
cli-matic/cli-matic {:mvn/version "0.4.3"}
clj-commons/clj-yaml {:mvn/version "1.0.26"}
com.taoensso/nippy {:mvn/version "3.2.0"}
healthsamurai/dsql {:git/url "https://github.com/HealthSamurai/dsql"
:sha "689cd68f0efeaa0aa26221c3c72a22590909337b"}}
:aliases
{:eastwood
{:main-opts ["-m" "eastwood.lint" {:continue-on-exception true
:source-paths ["src"]}]
:extra-deps {jonase/eastwood {:mvn/version "1.3.0"}}}
:pipeline
{:extra-deps {http-kit/http-kit {:mvn/version "2.6.0"}
com.velisco/clj-ftp {:mvn/version "1.2.0"}
;; http-kit can't handle cookies, so, to download LOINC bundle we're using clj-http with
;; pre-configured cookie-store
clj-http/clj-http {:mvn/version "3.12.3"} ;
org.clj-commons/hickory {:mvn/version "0.7.3"}}}
:nrepl
{:extra-paths []
:extra-deps {cider/cider-nrepl {:mvn/version "LATEST"}}
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]}
:test {:extra-paths ["test" "inspect"]
:extra-deps {healthsamurai/matcho {:mvn/version "0.3.10"}
hiccup/hiccup {:mvn/version "2.0.0-alpha2"}
ring/ring {:mvn/version "1.9.6"}}
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"
"-Xmx8G"]}
:kaocha
{:extra-deps {lambdaisland/kaocha {:mvn/version "1.72.1136"}}
:extra-paths ["runner" "test"]
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "kaocha.runner" "--config-file" "test/test.edn"]}
:build
{:extra-paths ["build"]
:jvm-opts ^:replace ["-XX:-OmitStackTraceInFastThrow"]
:extra-deps {io.github.clojure/tools.build {:git/url "https://github.com/clojure/tools.build"
:sha "cc1e33d003e2e9507e8e6e899611f56172dacc0a"}}
:ns-default build}}}