-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
31 lines (31 loc) · 1.44 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
(defproject diplomacy "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.9.0-alpha17"]
;; Used extensively in the resolution engine
[org.clojure/core.logic "0.8.11"]
;; Used occasionally for convenience
[org.clojure/core.match "0.3.0-alpha4"]
;; Used to get better spec instrumentation than core.spec
;; currently has (checking that return values conform to
;; specs).
[orchestra "2017.08.13"]
;; Web dependencies
[ring/ring-core "1.6.2"]
[ring/ring-devel "1.6.2"]
[ring/ring-json "0.4.0"]
[compojure "1.6.0"]
;; Used for templating, seems to pull in a LOT of transitive
;; dependencies.
[selmer "1.11.7"]
;; Converting Clojure data structures to and from JSON
[org.clojure/data.json "0.2.6"]
;; TODO: make this a :dev or :test dependency
[org.clojure/test.check "0.9.0"]]
:plugins [[lein-ring "0.9.7"]]
:ring {:handler diplomacy.web.routes/app}
:main ^:skip-aot diplomacy.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})