-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathproject.clj
27 lines (24 loc) · 998 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
(defproject crud "0.1.0-SNAPSHOT"
:description "Create, Read, Update, Delete. Done!"
:url "http://github.com/cddr/crud"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:scm {:url "[email protected]:cddr/crud.git"}
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.6.0"]
[com.datomic/datomic-free "0.9.4899"]
;; http api
[bidi "1.12.0"]
[liberator "0.12.2"]
[ring/ring-defaults "0.1.2"]
;; data modelling
[prismatic/schema "0.2.6"]
[environ "1.0.0"]]
:plugins [[lein-ring "0.8.12"]
[lein-environ "1.0.0"]]
:ring {:handler crud.handler/app}
:profiles
{:dev {:env {:crud-db-uri "datomic:mem://crud-db-uri"}
:dependencies [[javax.servlet/servlet-api "2.5"]
[crypto-password "0.1.3"]
[ring-mock "0.1.5"]]}})