-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
33 lines (26 loc) · 1.22 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
(defproject linkin "0.1.0-SNAPSHOT"
:description "Web crawling with async magic"
:url "http://github.com/rorygibson/linkin"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:min-lein-version "2.0.0"
:main linkin.core
:jvm-opts ["-Xms500m" "-Xmx500m" "-server"]
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.303.0-886421-alpha"]
[http-kit "2.1.18"]
[irobot/irobot "0.1.1-SNAPSHOT"]
[mundi "0.1.0-SNAPSHOT"]
[org.jsoup/jsoup "1.7.3"]
[org.clojure/tools.logging "0.2.6"]]
:profiles { :dev {
:dependencies [[midje "1.6.3"]
[log4j/log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jdmk/jmxtools
com.sun.jmx/jmxri]]]
:plugins [[lein-midje "3.1.1"]]
}
:uberjar {
:aot :all}
})