-
Notifications
You must be signed in to change notification settings - Fork 1
/
project.clj
54 lines (42 loc) · 2.28 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
(defproject com.brunobonacci/bad-boy (-> "./resources/bad-boy.version" slurp .trim)
:description "A chaos testing and infrastructure hardening tool."
:url "https://github.com/BrunoBonacci/bad-boy"
:license {:name "Apache License 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"}
:scm {:name "git" :url "https://github.com/BrunoBonacci/bad-boy.git"}
:dependencies [[org.clojure/clojure "1.10.1"]
[org.clojure/tools.logging "1.1.0"]
[com.cognitect.aws/api "0.8.484"]
[com.cognitect.aws/endpoints "1.1.11.914"]
[com.cognitect.aws/ec2 "810.2.805.0"]
[com.cognitect.aws/autoscaling "810.2.801.0"]
[instaparse "1.4.10"]
[com.brunobonacci/where "0.5.5"]
[com.brunobonacci/safely "0.7.0-alpha1"]
[com.brunobonacci/mulog "0.6.2"]
[com.brunobonacci/mulog-elasticsearch "0.6.2"]
[com.brunobonacci/mulog-cloudwatch "0.6.2"]
[com.brunobonacci/oneconfig "0.21.0"]]
:global-vars {*warn-on-reflection* true}
:jvm-opts ["-server"]
:bin {:name "bad-boy"
:jvm-opts ["-server" "$JVM_OPTS" "-Dfile.encoding=utf-8"]}
:main com.brunobonacci.bad-boy.main
:profiles {:uberjar
{:aot :all
;; temp fix for logging
:dependencies [[ch.qos.logback/logback-classic "1.2.3"]
[org.codehaus.janino/janino "3.1.2"]
[com.internetitem/logback-elasticsearch-appender "1.6"
:exclusions [com.fasterxml.jackson.core/jackson-core]]
[clj-time "0.15.2"]]
:resource-paths ["dev-resources"]}
:dev
{:dependencies [[midje "1.9.9"]
[org.clojure/test.check "1.1.0"]
[criterium "0.4.6"]
[ch.qos.logback/logback-classic "1.2.3"]]
:resource-paths ["dev-resources"]
:plugins [[lein-midje "3.2.1"]
[lein-binplus "0.6.5"]]}}
)