forked from siscia/ema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
21 lines (21 loc) · 870 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 ema "0.0.4"
:description "A simple interface to write REST"
:url "https://github.com/siscia/ema"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[liberator "0.12.2"]
[http-kit "2.1.19"]
[org.clojure/core.typed "0.2.68"]
[cheshire "5.3.1"]
[ring "1.3.1"]
[ring/ring-defaults "0.1.2"]
[ring/ring-json "0.3.1"]
[com.novemberain/monger "2.0.0"]
[compojure "1.1.9"]
[bidi "1.10.5"]
[ring-basic-authentication "1.0.5"]
[org.mindrot/jbcrypt "0.3m"]]
:profiles {:dev {:dependencies [[midje "1.6.3"]]}}
:main ema.core
:ring {:handler ema.core/app})