-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
31 lines (25 loc) · 973 Bytes
/
project.clj
File metadata and controls
31 lines (25 loc) · 973 Bytes
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
(defproject clojure-api-demo "0.0.1-SNAPSHOT"
:description "FIXME: write this!"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/tools.reader "0.8.3"]
;; CLJ
[ring/ring-core "1.2.1"]
[org.clojure/data.xml "0.0.7"]
[org.clojure/java.jdbc "0.3.3"]
[clj-time "0.6.0"]
[compojure "1.1.6"]
[liberator "0.11.0"]
[cheshire "5.3.1"]
[net.mikera/clojure-utils "0.6.0"]
[javax.servlet/servlet-api "2.5"]
[com.h2database/h2 "1.3.175"]
[http-kit "2.1.17"]]
:plugins [[lein-cljsbuild "1.0.0"]
[lein-ring "0.8.7"]]
:ring {:handler demo.core/app
:init demo.core/init}
:source-paths ["src/main/clj"]
:test-paths ["src/test/clj"]
:resource-paths ["resources"]
:main demo.core)