-
Notifications
You must be signed in to change notification settings - Fork 34
/
project.clj
40 lines (40 loc) · 1.92 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
(defproject elle "0.2.3-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"]
[com.aphyr/bifurcan-clj "0.1.2"]
; Has to be here for our java classes to use Clojure
[org.clojure/clojure "1.12.0"]
[dom-top "1.0.9"]
[hiccup "1.0.5"]
[org.clojure/tools.logging "1.3.0"]
[rhizome "0.2.9"]
[io.jepsen/history "0.1.3"]
[jepsen.txn "0.1.2"]]
:java-source-paths ["src"]
; We need jepsen.history.Op available before we can compile our java code
;:prep-tasks [["compile" "jepsen.history"]
; "javac"
; "compile"]
:javac-options ["-target" "1.8" "-source" "1.8"
]
:profiles {:dev {:dependencies [[com.gfredericks/test.chuck "0.2.14"]
[io.jepsen/history.sim "0.1.0"]
[org.clojure/test.check "1.1.1"]
[spootnik/unilog "0.7.32"]]}}
: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})