-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
24 lines (23 loc) · 998 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
23
24
(defproject arpad "0.1.0-SNAPSHOT"
:description "An Elo ratings bot"
:url "https://github.com/ahammel/arpad"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[compojure "1.4.0"]
[instaparse "1.4.1"]
[org.clojure/clojure "1.7.0"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[org.clojure/core.match "0.3.0-alpha4"]
[org.clojure/tools.logging "0.3.1"]
[org.clojure/data.json "0.2.6"]
[ring/ring-jetty-adapter "1.4.0"]
[prismatic/schema "0.4.3"]
[ring/ring-defaults "0.1.5"]
[ring/ring-json "0.3.1"]]
:plugins [[lein-environ "1.0.0"]]
:main ^:skip-aot arpad.slack
:ring {:init arpad.slack/init
:handler arpad.slack/app}
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})
{:env {:squiggly {:checkers [:eastwood :kibit]}}}