-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (21 loc) · 932 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defproject api "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
: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"]
[com.layerware/hugsql "0.5.1"]
[com.layerware/hugsql-adapter-next-jdbc "0.5.1"]
[org.postgresql/postgresql "42.2.2"]
[compojure "1.6.1"]
[http-kit "2.3.0"]
[ring/ring-defaults "0.3.2"]
[ring/ring-json "0.5.0"]
[org.clojure/tools.logging "0.2.3"]
[log4j/log4j "1.2.16"]
[funcool/clojure.jdbc "0.9.0"]
[org.clojure/data.json "0.2.6"]
]
:main ^:skip-aot api.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})