-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
58 lines (51 loc) · 1.82 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
(defproject in.co.sdslabs/slack-lens "0.0.1"
:description
"FIXME: write description"
:url "FIXME: Add a url"
:min-lein-version "2.0.0"
:dependencies
[[org.clojure/clojure "1.7.0"]
[org.clojure/tools.cli "0.3.1"]
[org.clojure/tools.logging "0.3.1"]
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
[ring/ring-core "1.3.2"]
[ring/ring-jetty-adapter "1.3.2"]
[metosin/ring-swagger-ui "2.1.5-M2"]
[metosin/compojure-api "0.22.0"]
[org.slf4j/slf4j-api "1.7.12"]
[org.slf4j/slf4j-log4j12 "1.7.12"]
[log4j/apache-log4j-extras "1.2.17"]
[ring.middleware.logger "0.5.0"]
[org.julienxx/clj-slack "0.4.3"]
[aleph "0.4.0"]
[manifold "0.1.0"]
[cheshire "5.5.0"]
[clojurewerkz/elastisch "2.1.0"]]
:profiles {:doc {:plugins [[lein-marginalia "0.8.0"]]}
;; uncomment the following line to prevent service logs from cluttering test output
; :test {:jvm-opts ["-Droot.logger=OFF"]}
}
:plugins
[[lein-ring "0.9.6"]
[lein-ancient "0.5.5"]
[lein-cloverage "1.0.6"]]
:ring
{:port 40000
:init in.co.sdslabs.slack-lens.service/initialize!
:handler in.co.sdslabs.slack-lens.service/main-handler
:destroy in.co.sdslabs.slack-lens.service/destroy!}
:test-selectors {:default (complement :integration)
:integration :integration
:all (constantly true)}
:jvm-opts
["-Xmx1g"
"-server"
"-Droot.logger=INFO, stdout"
"-Dlog4j.configuration=file:resources/log4j.properties"]
:aliases
{"package" ["do" "clean," "javac," ["ring" "uberwar"]]
"docs" ["marg" "-d" "target"]}
:publish {:local-prefix "target/coverage"
:entry-file "index.html"
:artifact-name "Coverage report"
:remote-prefix "test-results/slack-lens/coverage"})