-
Notifications
You must be signed in to change notification settings - Fork 4
/
project.clj
31 lines (31 loc) · 1.56 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
(defproject jepsen.voltdb "0.1.0-SNAPSHOT"
:description "Jepsen VoltDB tests"
:url "https://github.com/jepsen-io/voltdb"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.11.1"]
[jepsen "0.3.3"]
[org.clojure/data.xml "0.0.8"]
[org.voltdb/voltdbclient "12.1.0"]
; VoltDB seems to depend on Netty classes but doesn't declare
; a dependency on it?
[io.netty/netty-all "4.1.94.Final"]
; Might need these too?
;[io.netty/netty-tcnative-boringssl-static "2.0.56.Final"]
;[io.netty/netty-tcnative-classes "2.0.56.Final"]
]
:jvm-opts ["-Xmx8g"
"-XX:MaxInlineLevel=32"
"-server"
"--add-opens" "java.base/java.lang=ALL-UNNAMED"
"--add-opens" "java.base/sun.nio.ch=ALL-UNNAMED"
"--add-opens" "java.base/java.net=ALL-UNNAMED"
"--add-opens" "java.base/java.nio=ALL-UNNAMED"
"--add-opens" "java.base/sun.net.www.protocol.http=ALL-UNNAMED"
"--add-opens" "java.base/sun.net.www.protocol.https=ALL-UNNAMED"
"--add-opens" "java.base/sun.net.www.protocol.file=ALL-UNNAMED"
"--add-opens" "java.base/sun.net.www.protocol.ftp=ALL-UNNAMED"
"--add-opens" "java.base/sun.net.www.protocol.jar=ALL-UNNAMED"]
:main jepsen.voltdb.runner
:aot [jepsen.voltdb.runner
clojure.tools.logging.impl])