-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject.clj
24 lines (24 loc) · 1.08 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
23
24
(defproject exercism-api "0.1.0-SNAPSHOT"
:description "An API for Exercism.io"
:dependencies [[org.clojure/clojure "1.7.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[clj-time "0.9.0"] ; required due to bug in lein-ring
[metosin/compojure-api "0.22.0"]
[pandect "0.5.2"]
[environ "1.0.0"]
[ring/ring-json "0.3.1"]
[ring/ring-devel "1.4.0"]
[http-kit "2.1.18"]
[cheshire "5.5.0"]
[korma "0.4.2"]
[org.clojure/java.jdbc "0.3.7"]]
:ring {:handler exercism-api.handler/app}
:main exercism-api.core
:uberjar-name "server.jar"
:profiles {:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[cheshire "5.3.1"]
[ring-mock "0.1.5"]
[midje "1.6.3"]]
:plugins [[lein-ring "0.9.6"]
[lein-midje "3.1.3"]
[lein-environ "1.0.0"]]}})