forked from Swirrl/graftwerk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
67 lines (56 loc) · 2.33 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
(defproject graftwerk "0.2.1"
:url "http://grafter.org/"
:description "Service for executing grafter transformations, and generating
their previews."
:license {:name "Eclipse Public License - v1.0 (c) 2016 Swirrl IT Ltd"
:url "https://www.eclipse.org/legal/epl-v10.html"}
:repositories {"local" ~(str (.toURI (java.io.File. "maven_repository")))}
:dependencies [[org.clojure/clojure "1.6.0"]
[ring-server "0.3.1"]
[com.taoensso/timbre "4.0.1"]
[com.taoensso/tower "3.0.2"]
[selmer "0.8.0"]
[enlive "1.1.5"]
[grafter "0.5.0"]
[clojail "1.0.6"]
[environ "1.0.0"]
[compojure "1.3.2"]
[grafter/vocabularies "0.1.0"]
[grafterizer/tabular_functions "0.1.2"]
[ring/ring-defaults "0.1.3"]
[ring/ring-session-timeout "0.1.0"]
[ring-middleware-format "0.4.0"]
[noir-exception "0.2.3"]
[bouncer "0.3.2"]
[org.slf4j/slf4j-simple "1.6.1"]
[prone "0.8.0"]
[ww-geo-coords "1.0"]
]
:min-lein-version "2.5.0"
:uberjar-name "graftwerk.jar"
:repl-options {:init-ns graftwerk.core
:init (-main)
:timeout 60000}
:jvm-opts ["-server" "-Djava.security.manager" "-Djava.security.policy=.java.policy"]
:main graftwerk.core
:plugins [[lein-ring "0.9.1"]
[lein-environ "1.0.0"]
[lein-ancient "0.6.0"]]
:ring {:handler graftwerk.handler/app
:init graftwerk.handler/init
:destroy graftwerk.handler/destroy
:uberwar-name "graftwerk.war"}
:profiles
{:uberjar {:omit-source true
:env {:production true}
:aot :all}
:production {:ring {:open-browser? false
:stacktraces? false
:auto-reload? false}}
:dev {:dependencies [[ring-mock "0.1.5"]
[prismatic/schema "0.4.3"]
[ring/ring-devel "1.3.2"]
[pjstadig/humane-test-output "0.6.0"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:env {:dev true}}})