forked from jepsen-io/elle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
33 lines (33 loc) · 1.64 KB
/
Copy pathproject.clj
File metadata and controls
33 lines (33 loc) · 1.64 KB
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
(defproject elle "0.1.6-SNAPSHOT"
:description "Black-box transactional consistency checker, based on cycle detection"
:url "https://github.com/jepsen-io/elle"
: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 [[slingshot "0.12.2"]
[dom-top "1.0.8-SNAPSHOT"]
[hiccup "1.0.5"]
[org.clojure/tools.logging "1.2.4"]
[rhizome "0.2.9"]
[io.jepsen/history "0.1.0-SNAPSHOT"]
[jepsen.txn "0.1.2"]
[io.lacuna/bifurcan "0.2.0-alpha6"]]
:java-source-paths ["src"]
:javac-options ["-target" "1.8" "-source" "1.8"]
:profiles {:dev {:dependencies [[com.gfredericks/test.chuck "0.2.13"]
[org.clojure/clojure "1.11.1"]
[org.clojure/test.check "1.1.1"]
[spootnik/unilog "0.7.31"]]}}
:jvm-opts ["-server"
;"-XX:-OmitStackTraceInFastThrow"
;"-XX:+PrintGC"
"-agentpath:/home/aphyr/yourkit/bin/linux-x86-64/libyjpagent.so=disablestacktelemetry,exceptions=disable,delay=10000,usedmem=50"
]
:repl-options {:init-ns elle.core}
:test-selectors {:default (fn [m] (not (or (:perf m)
(:interactive m)
(:overflow m))))
:all (fn [m] true)
:perf :perf
:focus :focus
:overflow :overflow
:interactive :interactive})