-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
28 lines (28 loc) · 1.26 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
(defproject formidable-blabs "0.1.0-SNAPSHOT"
:description "Help I accidentally a Slack bot"
:url "http://github.com/Gastove/formidable-blabs"
:license {:name "MIT"
:url "https://opensource.org/licenses/MIT"}
:dependencies [[org.clojure/clojure "1.7.0"]
[jarohen/nomad "0.7.2"]
[aleph "0.4.1"]
[manifold "0.1.1"]
[com.taoensso/timbre "4.1.4"]
[org.clojure/core.match "0.3.0-alpha4"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[cheshire "5.5.0"]
[http-kit "2.1.19"]
[clj-time "0.11.0"]
[org.clojure/java.jdbc "0.4.2"]
[korma "0.4.2"]
[org.xerial/sqlite-jdbc "3.7.2"]
[camel-snake-kebab "0.3.2"]
[org.clojure/core.incubator "0.1.3"]]
:plugins [[michaelblume/lein-marginalia "0.9.0"]]
;; There is a bug in Netty where, on my Digital Ocean droplet, it will
;; just... hork, without this. Neat, eh?
:jvm-opts ["-Djava.security.egd=file:///dev/urandom"]
:aliases {"init-db" ["run" "-m" "formidable-blabs.db/setup-db!"]}
:main ^:skip-aot formidable-blabs.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})