-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproject.clj
20 lines (20 loc) · 973 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject server-daemon "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.async "0.2.374"]
[http-kit "2.1.18"]
[org.clojure/data.json "0.2.6"]
[org.clojure/tools.cli "0.3.5"]
[amazonica "0.3.74"]
[overtone/at-at "1.2.0"]
[org.clojure/tools.logging "0.3.1"]
[log4j/log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]
:main ^:skip-aot server-daemon.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})