-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeps.edn
88 lines (71 loc) · 4.32 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
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.12.0"}
org.clojure/core.async {:mvn/version "1.7.701"}
org.clojure/data.csv {:mvn/version "1.1.0"}
org.clojure/data.xml {:mvn/version "0.2.0-alpha9"}
org.clojure/data.zip {:mvn/version "1.1.0"}
org.clojure/tools.logging {:mvn/version "1.3.0"}
com.eldrix/nhspd {:mvn/version "1.1.48"}
com.eldrix/trud {:mvn/version "1.0.118"}
clj-bom/clj-bom {:mvn/version "0.1.2"}
com.taoensso/nippy {:mvn/version "3.4.2"}
org.apache.lucene/lucene-core {:mvn/version "9.5.0"}
org.apache.lucene/lucene-queries {:mvn/version "9.5.0"}
org.apache.lucene/lucene-backward-codecs {:mvn/version "9.5.0"}}
:aliases {:build
{:deps {io.github.clojure/tools.build {:git/tag "v0.10.6" :git/sha "52cf7d6"}
slipset/deps-deploy {:mvn/version "RELEASE"}}
:ns-default build}
:pathom-viz
{:extra-deps {com.wsscode/pathom-viz-connector {:mvn/version "2022.02.14"}}}
:install
{:extra-deps {ch.qos.logback/logback-classic {:mvn/version "1.5.16"}}
:main-opts ["-m" "com.eldrix.clods.install"]}
:nhspd
{:extra-deps {ch.qos.logback/logback-classic {:mvn/version "1.5.16"}}
:main-opts ["-m" "com.eldrix.clods.nhspd"]}
:serve
{:extra-paths ["serve"]
:extra-deps {io.pedestal/pedestal.service {:mvn/version "0.7.2"}
io.pedestal/pedestal.jetty {:mvn/version "0.7.2"}
ch.qos.logback/logback-classic {:mvn/version "1.5.16"}}
:main-opts ["-m" "com.eldrix.clods.serve"]}
:fhir-r4
{:extra-paths ["fhir_r4"]
:extra-deps {ca.uhn.hapi.fhir/hapi-fhir-base {:mvn/version "6.4.4"}
ca.uhn.hapi.fhir/hapi-fhir-server {:mvn/version "6.4.4"}
ca.uhn.hapi.fhir/hapi-fhir-structures-r4 {:mvn/version "6.4.4"}
ch.qos.logback/logback-classic {:mvn/version "1.5.16"}
io.pedestal/pedestal.jetty {:mvn/version "0.7.2"}
javax.servlet/javax.servlet-api {:mvn/version "4.0.1"}}
:main-opts ["-m" "com.eldrix.clods.fhir.r4.serve"]}
:test
{:extra-paths ["test" "test/resources"]
:extra-deps {com.cognitect/test-runner {:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "3f288f1f16d167723ad87cc35b1dfee3c1681e10"}}
:main-opts ["-m" "cognitect.test-runner"]}
:log
{:extra-deps {ch.qos.logback/logback-classic {:mvn/version "1.5.16"}}}
:outdated
{:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core"]}
:upgrade
{:extra-deps {com.github.liquidz/antq {:mvn/version "RELEASE"}}
:main-opts ["-m" "antq.core" "--upgrade"]}
:check
{:extra-deps {athos/clj-check
{:git/url "https://github.com/athos/clj-check.git"
:sha "d997df866b2a04b7ce7b17533093ee0a2e2cb729"}}
:main-opts ["-m" "clj-check.check" "src"]}
;; run with clj -M:serve:fhir-r4:check-all to test all codepaths
:check-all
{:extra-deps {athos/clj-check
{:git/url "https://github.com/athos/clj-check.git"
:sha "d997df866b2a04b7ce7b17533093ee0a2e2cb729"}}
:main-opts ["-m" "clj-check.check" "src" "fhir_r4" "serve"]}
:lint/kondo
{:extra-deps {clj-kondo/clj-kondo {:mvn/version "RELEASE"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}
:lint/eastwood
{:main-opts ["-m" "eastwood.lint" {:source-paths ["src" "fhir_r4" "serve"]}]
:extra-deps {jonase/eastwood {:mvn/version "RELEASE"}}}}}