-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
53 lines (49 loc) · 2.25 KB
/
project.clj
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
(defproject manetu/data-loader "2.0.1-SNAPSHOT"
:description "A utility to load and verify data on the Manetu Platform"
:url "https://github.com/manetu/data-loader"
:plugins [[lein-cljfmt "0.9.0"]
[lein-kibit "0.1.8"]
[lein-bikeshed "0.5.2"]
[lein-cloverage "1.2.3"]
[jonase/eastwood "1.3.0"]
[lein-bin "0.3.5"]]
:dependencies [[org.clojure/clojure "1.12.0"]
[org.clojure/core.async "1.6.681"]
[org.clojure/tools.cli "1.1.230"]
[com.taoensso/timbre "6.5.0"]
[com.fzakaria/slf4j-timbre "0.4.1"]
[org.slf4j/jul-to-slf4j "2.0.16"]
[org.slf4j/jcl-over-slf4j "2.0.16"]
[org.slf4j/log4j-over-slf4j "2.0.16"]
[org.eclipse.jetty.http2/http2-client "11.0.24"]
[org.eclipse.jetty/jetty-alpn-java-client "12.0.14"]
[ring/ring-codec "1.2.0"]
[funcool/promesa "11.0.678"]
[cheshire "5.13.0"]
[progrock "0.1.2"]
[doric "0.9.0"]
[clj-commons/fs "1.6.311"]
[org.clojure/data.csv "1.1.0"]
[kixi/stats "0.5.6"]
[de.ubercode.clostache/clostache "1.4.0"]
[buddy/buddy-sign "3.6.1-359"]
[medley "1.4.0"]
[slingshot "0.12.2"]
[district0x/graphql-query "1.0.6"]
[http-kit/http-kit "2.7.0"]
[environ "1.2.0"]]
:main ^:skip-aot manetu.data-loader.main
:target-path "target/%s"
:uberjar-name "app.jar"
:jvm-opts ["-server"]
:bin {:name "manetu-data-loader"
:bin-path "target"
:bootclasspath false}
:eastwood {:add-linters [:unused-namespaces]
:exclude-linters [:deprecations :suspicious-expression :local-shadows-var :unused-meta-on-macro :reflection]}
;; nREPL by default starts in the :main namespace, we want to start in `user`
;; because that's where our development helper functions like (refresh) live.
:repl-options {:init-ns user}
:profiles {:dev {:dependencies [[clj-http "3.13.0"]
[org.clojure/tools.namespace "1.5.0"]]}
:uberjar {:aot :all}})