-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
28 lines (27 loc) · 827 Bytes
/
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
25
26
27
28
(defproject recomotion-backend "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.3.465"]
[ring-server "0.4.0"]
[ring "1.5.0"]
[ring/ring-json "0.4.0"]
[cheshire "5.5.0"]
[ring/ring-defaults "0.2.1"]
[ring-logger "0.7.7"]
[compojure "1.5.1"]
[buddy "1.3.0"]
[buddy/buddy-auth "1.4.1"]
[com.novemberain/monger "3.1.0"]
[hiccup "1.0.5"]
[environ "1.0.0"]
[org.clojure/tools.trace "0.7.9"]
]
:min-lein-version "2.5.0"
:uberjar-name "recomotion-backend.jar"
:main ^:skip-aot recomotion-backend.core
:profiles {:uberjar {:aot :all}}
)