-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
24 lines (24 loc) · 1.07 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
(defproject comics_world "0.1.0-SNAPSHOT"
:description "Comics World"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.10.0"]
[ring/ring-core "1.7.1"]
[ring/ring-jetty-adapter "1.7.1"]
[ring/ring-json "0.5.0"]
[cheshire "5.9.0"]
[org.clojure/data.json "0.2.6"]
[camel-snake-kebab "0.4.0"]
[bidi "2.1.6"]
[mount "0.1.16"]
[com.taoensso/timbre "4.10.0"]
[org.apache.logging.log4j/log4j-core "2.11.2"]
[org.apache.logging.log4j/log4j-slf4j-impl "2.11.2"]
[org.clojure/java.jdbc "0.7.10"]
[org.postgresql/postgresql "42.2.5"]
; development time libraries
[ring/ring-devel "1.7.1"]]
:plugins [[lein-cljfmt "0.6.4"]]
:main ^:skip-aot comics-world.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})