forked from clojure-liberator/liberator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
36 lines (29 loc) · 1.53 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
27
28
29
30
31
32
33
34
35
36
(defproject liberator "0.10.0"
:description "Liberator - A REST library for Clojure."
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/tools.trace "0.7.3"]
[org.clojure/tools.logging "0.2.3"]
[org.clojure/data.json "0.2.1"]
[org.clojure/data.csv "0.1.2"]
[hiccup "1.0.2"]] ;; Used by code rendering default representations.
:license {:name "Eclipse Public License - v 1.0"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:scm {:connection "scm:git:https://github.com/clojure-liberator/liberator.git"
:url "https://github.com/clojure-liberator/liberator"}
:plugins [[lein-midje "2.0.3"]
[lein-ring "0.7.1" :exclusions [org.clojure/clojure]]]
:profiles {:dev {:dependencies [[ring/ring-jetty-adapter "1.1.6"]
[ring-mock "0.1.2"]
[ring/ring-devel "1.1.6"]
[compojure "1.0.2" :exclusions [org.clojure/tools.macro]] ;; only for examples
[midje "1.5.0"]
[bultitude "0.1.7"]
[org.clojure/clojurescript "0.0-1450"]]
:source-paths [ "src" "examples/clj"]}}
:source-paths ["src"]
:test-paths ["test"]
:ring {:handler examples.server/handler
:adapter {:port 8000}}
:aliases {"examples" ["run" "-m" "examples.server"]})