-
Notifications
You must be signed in to change notification settings - Fork 17
/
project.clj
22 lines (22 loc) · 866 Bytes
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject clj-slackbot "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:min-lein-version "2.0.0"
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[compojure "1.4.0"]
[clojail "1.0.6"]
[clj-http "2.0.1"]
[cheshire "5.5.0"]
[environ "1.0.2"]
[stylefruits/gniazdo "0.4.1"]
[ring/ring-defaults "0.1.5"]
[http-kit "2.1.18"]]
:plugins [[lein-ring "0.9.7"]]
:uberjar-name "clj-slackbot.jar"
:main clj-slackbot.core
:profiles
{:dev {:repl-options {:init-ns clj-slackbot.core.handler}
:dependencies [[javax.servlet/servlet-api "2.5"]
[ring-mock "0.1.5"]]}
:uberjar {:aot :all}})