-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
36 lines (25 loc) · 1.13 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
(defproject celery-prometheus-exporter "0.1.2"
:description "Celery Prometheus Exporter"
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/core.async "1.1.587"]
[org.clojure/tools.logging "1.1.0"]
[ch.qos.logback/logback-classic "1.1.3"]
[environ "1.2.0"]
[compojure "1.6.1" :exclusions [ring/ring-codec]]
[http-kit "2.5.0"]
[ring/ring-core "1.8.0" :exclusions [commons-codec]]
[ring/ring-defaults "0.3.2"]
[medley "1.3.0"]
[jarohen/chime "0.3.2"]
[com.novemberain/langohr "5.1.0"]
[metosin/jsonista "0.2.6"]
[clj-commons/iapetos "0.1.9"]
[clojure.java-time "0.3.2"]]
:plugins [[lein-ring "0.12.5"]]
:source-paths ["src/clj"]
:target-path "target/%s/"
:main ^:skip-aot celery-prometheus-exporter.core
:uberjar-name "celery_exporter.jar"
:clean-targets ^{:protect false} [:target-path]
:profiles {:uberjar {:aot :all
:omit-source true}})