-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
22 lines (22 loc) · 1.01 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
(defproject rest-demo "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"]
; Compojure - A basic routing library
[compojure "1.6.1"]
; Our Http library for client/server
[http-kit "2.3.0"]
; Ring defaults - for query params etc
[ring/ring-defaults "0.3.2"]
; Clojure data.JSON library
[org.clojure/data.json "0.2.6"]
[org.clojure/java.jdbc "0.4.2"]
[mysql/mysql-connector-java "5.1.38"]
[lynxeyes/dotenv "1.1.0"]
[clj-http "3.12.3"]]
:main ^:skip-aot rest-demo.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all
:jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})