-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
20 lines (20 loc) · 940 Bytes
/
Copy pathproject.clj
File metadata and controls
20 lines (20 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject scoring-engine "0.1.0"
:description "NanoLend Credit Scoring Engine"
:dependencies [[org.clojure/clojure "1.11.1"]
[metosin/reitit "0.7.0"]
[ring/ring-core "1.11.0"]
[ring/ring-jetty-adapter "1.11.0"]
[ring/ring-json "0.5.1"]
[com.github.seancorfield/next.jdbc "1.3.909"]
[org.postgresql/postgresql "42.7.2"]
[com.zaxxer/HikariCP "5.1.0"]
[cheshire "5.12.0"]
[io.prometheus/simpleclient "0.16.0"]
[io.prometheus/simpleclient_hotspot "0.16.0"]
[com.taoensso/timbre "6.3.1"]
[mount "0.1.17"]]
:main scoring-engine.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}
:dev {:dependencies [[ring/ring-mock "0.4.0"]]}})