-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
48 lines (43 loc) · 2.04 KB
/
project.clj
File metadata and controls
48 lines (43 loc) · 2.04 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
(defproject whosin "0.1.0"
:url "https://github.com/tonylpt/whosinbot-clojure"
:dependencies [[org.clojure/clojure "1.10.0"]
[org.clojure/tools.cli "0.4.1"]
[org.clojure/tools.logging "0.4.1"]
[org.clojure/tools.nrepl "0.2.13"]
[org.clojure/core.match "0.3.0-alpha5"]
[org.clojure/core.async "0.4.490"]
[org.clojure/tools.trace "0.7.10"]
[clj-time "0.15.0"]
[org.slf4j/slf4j-api "1.7.25"]
[org.slf4j/jul-to-slf4j "1.7.25"]
[ch.qos.logback/logback-classic "1.2.3"]
[io.sentry/sentry-logback "1.7.16"]
[digest "1.4.8"]
[camel-snake-kebab "0.4.0"]
[morse "0.4.0" :exclusions [org.clojure/core.async]]
[aero "1.1.3"]
[mount "0.1.16"]
[ragtime "0.8.0"]
[com.taoensso/carmine "2.19.1"]
[com.zaxxer/HikariCP "3.3.0"]
[org.postgresql/postgresql "42.2.5"]
[hikari-cp "2.6.0" :exclusions [org.postgresql/postgresql com.zaxxer/HikariCP]]
[org.clojure/java.jdbc "0.7.8"]
[honeysql "0.9.4"]
[nilenso/honeysql-postgres "0.2.5"]
[pjstadig/humane-test-output "0.8.2"]]
:plugins [[lein-cloverage "1.1.0"]]
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]
:aliases {"migrate" ["run" "--" "--migrate"]
"rollback" ["run" "--" "--rollback"]}
:cloverage {:ns-exclude-regex [#"whosin\.db\.migrations"
#"whosin\.db\.spec"
#"whosin\.config"
#"whosin\.nrepl-server"
#"whosin\.core"]}
:min-lein-version "2.0.0"
:main ^:skip-aot whosin.core
:uberjar-name "whosin-standalone.jar"
:target-path "target/%s"
:profiles {:uberjar {:main whosin.core, :aot :all}})