-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
29 lines (29 loc) · 1.32 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
(defproject le-guin "0.2.0-SNAPSHOT"
:description "Manipulate Ansible playbooks from clojure"
:url "https://github.com/vxe/le-guin"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[metosin/compojure-api "1.1.11"]
[org.slf4j/slf4j-log4j12 "1.7.1"]
[me.raynes/conch "0.8.0"]
[log4j/log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jmdk/jmxtools
com.sun.jmx/jmxri]]
[cheshire "5.8.0"]
[io.forward/yaml "1.0.8"]
[com.cemerick/pomegranate "0.4.0"]
[clj-vxe "0.1.0-SNAPSHOT"]
[org.flatland/ordered "1.5.6"]]
:plugins [[lein-ring "0.12.0"]]
:ring {:handler le-guin.handler/app
:nrepl {:start? true
:port 9003
}}
:uberjar-name "server.jar"
:aot :all
:repl-options {:init-ns le-guin.core}
:main le-guin.handler
:profiles {:dev {:dependencies [[javax.servlet/javax.servlet-api "3.1.0"]]
:plugins [[lein-ring "0.12.0"]]}})