-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
30 lines (30 loc) · 1.18 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
(defproject picture-gallery "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:dependencies [[org.clojure/clojure "1.6.0"]
[compojure "1.1.6"]
[hiccup "1.0.5"]
[ring-server "0.3.1"]
[postgresql/postgresql "9.1-901.jdbc4"]
[org.clojure/java.jdbc "0.3.5"]
[ring/ring-anti-forgery "1.0.0"]
[com.taoensso/timbre "2.6.1"]
[lib-noir "0.9.5"]
[korma "0.4.0"]
[log4j "1.2.15"
:exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]
:plugins [[lein-ring "0.8.12"]]
:ring {:handler picture-gallery.handler/app
:init picture-gallery.handler/init
:destroy picture-gallery.handler/destroy}
:profiles
{:uberjar {:aot :all}
:production
{:ring
{:open-browser? false, :stacktraces? false, :auto-reload? false}}
:dev
{:plugins [[cider/cider-nrepl "0.8.0"]]}
{:dependencies [[ring-mock "0.1.5"] [ring/ring-devel "1.3.1"]]}})