-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
23 lines (23 loc) · 891 Bytes
/
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
(defproject jepsen.mongodb "0.2.1-SNAPSHOT"
:description "Jepsen MongoDB tests"
:url "https://github.com/aphyr/jepsen"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/tools.cli "0.3.3"]
[jepsen "0.1.4-SNAPSHOT"]
[org.mongodb/mongodb-driver "3.4.0-rc1"]]
:jvm-opts ["-Xmx16g"
"-Xms16g"
"-Xmn4g"
"-XX:+UseConcMarkSweepGC"
"-XX:+UseParNewGC"
"-XX:+CMSParallelRemarkEnabled"
"-XX:+AggressiveOpts"
"-XX:+UseFastAccessorMethods"
"-XX:MaxInlineLevel=32"
"-XX:MaxRecursiveInlineLevel=2"
"-server"]
:main jepsen.mongodb.runner
:aot [jepsen.mongodb.runner
clojure.tools.logging.impl])