-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathproject.clj
29 lines (29 loc) · 1.31 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
(defproject jepsen.etcd "0.2.5-SNAPSHOT"
:description "etcd Jepsen test"
:url "https://github.io/jepsen/etcd"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:dependencies [[org.clojure/clojure "1.11.3"]
[jepsen "0.3.7"
; More jetcd conflicts
:exclusions [com.fasterxml.jackson.core/jackson-core]]
[tech.droit/clj-diff "1.0.1"]
[io.etcd/jetcd-core "0.8.2"
; jetcd pulls in so, SO many incompatible deps with itself.
; Every damn time I upgrade it takes 2 hours of untangling
; their dependency web to get things working
:exclusions [
io.netty/netty-codec-http2
io.netty/netty-handler-proxy
]]
[io.netty/netty-codec-http2 "4.1.110.Final"]
[io.netty/netty-handler-proxy "4.1.110.Final"]
[cheshire "5.13.0"]
]
:jvm-opts ["-Djava.awt.headless=true"
"-server"
"-Xmx72g"]
:repl-options {:init-ns jepsen.etcd}
:main jepsen.etcd
:profiles {:uberjar {:target-path "target/uberjar"
:aot :all}})