-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeps.edn
71 lines (57 loc) · 3.24 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
{:paths ["src" "resources" "server"]
:deps {org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/core.async {:mvn/version "1.6.673"}
org.clojure/data.csv {:mvn/version "1.0.1"}
org.clojure/tools.logging {:mvn/version "1.2.4"}
com.taoensso/nippy {:mvn/version "3.2.0"}
org.apache.lucene/lucene-core {:mvn/version "9.4.2"}
org.apache.lucene/lucene-queries {:mvn/version "9.4.2"}
org.apache.lucene/lucene-backward-codecs {:mvn/version "9.4.2"}
com.eldrix/geocoordinates {:mvn/version "0.1.15"}
http-kit/http-kit {:mvn/version "2.6.0"}}
:aliases {:build {:deps {io.github.clojure/tools.build {:git/tag "v0.9.2" :git/sha "fe6b140"}
slipset/deps-deploy {:mvn/version "0.2.0"}}
:ns-default build}
:serve
{:extra-paths ["serve"]
:extra-deps {io.pedestal/pedestal.service {:mvn/version "0.5.10"}
io.pedestal/pedestal.jetty {:mvn/version "0.5.10"}
ch.qos.logback/logback-classic {:mvn/version "1.4.5"}}
:main-opts ["-m" "com.eldrix.nhspd.serve"]}
:download
{:extra-deps {ch.qos.logback/logback-classic {:mvn/version "1.4.5"}}
:main-opts ["-m" "com.eldrix.nhspd.core"]}
:test
{:extra-paths ["test" "test/resources"]
:extra-deps {com.cognitect/test-runner
{:git/url "https://github.com/cognitect-labs/test-runner.git"
:sha "7284cda41fb9edc0f3bc6b6185cfb7138fc8a023"}}
:main-opts ["-e" "(compile,'com.eldrix.nhspd.core)"
"-m" "cognitect.test-runner"
"-d" "test"]}
:outdated
{:extra-deps {com.github.liquidz/antq {:mvn/version "2.2.970"}}
:main-opts ["-m" "antq.core"]}
:upgrade
{:extra-deps {com.github.liquidz/antq {:mvn/version "2.2.970"}}
:main-opts ["-m" "antq.core" "--upgrade"]}
:check
{:extra-deps {athos/clj-check
{:git/url "https://github.com/athos/clj-check.git"
:sha "518d5a1cbfcd7c952f548e6dbfcb9a4a5faf9062"}}
:main-opts ["-m" "clj-check.check"]}
:test/cloverage
{:extra-paths ["test"]
:extra-deps {cloverage/cloverage {:mvn/version "1.2.4"}}
:main-opts ["-m" "cloverage.coverage"
"--src-ns-path" "src"
"--test-ns-path" "test"]
:exec-fn cloverage.coverage/run-project
:exec-args {:src-ns-path ["src"]
:test-ns-path ["test"]}}
:lint/kondo
{:extra-deps {clj-kondo/clj-kondo {:mvn/version "2023.01.16"}}
:main-opts ["-m" "clj-kondo.main" "--lint" "src"]}
:lint/eastwood
{:main-opts ["-m" "eastwood.lint" {:source-paths ["src"]}]
:extra-deps {jonase/eastwood {:mvn/version "1.3.0"}}}}}