This repository was archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
37 lines (33 loc) · 1.49 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 instabot "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[instagram-api "0.1.8"]
[environ "1.0.0"]
[clj-time "0.8.0"]
[clj-http "1.0.1"]
[com.novemberain/monger "2.0.1"]
[ring "1.3.2"]
[compojure "1.3.1"]
[hiccup "1.0.5"]
[schejulure "1.0.1"]
[throttler "1.0.0"]
[org.clojure/tools.logging "0.3.1"]
[org.slf4j/slf4j-log4j12 "1.7.9"]
[log4j/log4j "1.2.17" :exclusions [javax.mail/mail
javax.jms/jms
com.sun.jmdk/jmxtools
com.sun.jmx/jmxri]]
[dire "0.5.3"]]
:profiles {:dev {:dependencies [[midje "1.6.0" :exclusions [org.clojure/clojure]]]
:plugins [[cider/cider-nrepl "0.8.2"]
[lein-midje "3.1.3"]
[lein-ring "0.8.13"]
[jonase/eastwood "0.2.1"]]}
:uberjar {:aot :all}}
:main instabot.core
:uberjar-name "instabot-standalone.jar"
:aot [instabot.core]
:ring {:handler instabot.core/app})