-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
26 lines (24 loc) · 1.03 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
25
26
(defproject address-book "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.3.1"]
[hiccup "1.0.5"]
[ring/ring-defaults "0.1.2"]
[org.clojure/java.jdbc "0.3.6"]
[postgresql/postgresql "9.3-1102.jdbc41"]
[yesql "0.5.0-rc1"]
[environ "1.0.0"]]
:plugins [[lein-ring "0.8.13"]
[lein-environ "1.0.0"]]
:ring {:handler address-book.handler/app
:init address-book.handler/init}
:profiles {:test-local {:dependencies [[midje "1.6.3"]
[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]
:plugins [[lein-midje "3.1.3"]]}
:test-env-vars {}
:dev-env-vars {}
:test [:test-local :test-env-vars]
:dev [:dev-env-vars]})