-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
13 lines (13 loc) · 760 Bytes
/
project.clj
File metadata and controls
13 lines (13 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
(defproject understanding-ring "0.1.0-SNAPSHOT"
:description "Understanding Clojure ring"
:url "http://github.com/mattdenner/understanding-ring"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[ring/ring-core "1.1.8"]
[ring/ring-jetty-adapter "1.1.8"]
[compojure "1.1.5" :exclusions [org.clojure/tools.macro]]]
:plugins [[lein-ring "0.8.5" :exclusions [org.clojure/clojure]]]
:dev-dependencie [[ring/ring-devel "1.1.8" ]]
:profiles {:dev {:dependencies [[midje "1.5.0"]]}}
:ring {:handler understanding-ring.core/app})