-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
20 lines (20 loc) · 1005 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(defproject bestinclass "1.0.0-SNAPSHOT"
:description "Best In Class CMS"
:main bestinclass.core
:namespaces [bestinclass.admin]
:repositories [["maven2-repository.dev.java.net"
"http://download.java.net/maven/2/"]]
:dependencies [[org.clojure/clojure "1.2.0-master-SNAPSHOT"]
[org.clojure/clojure-contrib "1.2.0-SNAPSHOT"]
[enlive "1.0.0-SNAPSHOT"]
[net.cgrand/moustache "1.0.0-SNAPSHOT"]
[ring/ring-jetty-adapter "0.2.0"]
[log4j "1.2.15"
:exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]
[javax.mail/mail "1.4.2"]]
:dev-dependencies [[swank-clojure "1.3.0-SNAPSHOT"]]
:jar-files [["resources" ""]]
:war-files [["resources" ""]])