-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
20 lines (20 loc) · 838 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject scramble-backend "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.10.0"]
[compojure "1.6.1"]
[ring/ring-defaults "0.3.2"]
[clj-http "3.9.1"]
[cheshire "5.8.1"]
[ring/ring-json "0.4.0"]
[metosin/ring-http-response "0.9.0"]]
:plugins [[lein-ring "0.12.5"]]
:ring {:handler scramble-backend.handler/app}
:profiles
{:dev {:dependencies [[javax.servlet/servlet-api "2.5"]
[ring/ring-mock "0.3.2"]
[midje "1.9.6"]
[ring/ring-core "1.7.1"]
[ring/ring-jetty-adapter "1.7.1"]]
:plugins [[lein-midje "3.2.1"]]}})