-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.clj
30 lines (30 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
30
(defproject knossos "0.2.9-SNAPSHOT"
:description "Linearizability checker"
:url "https://github.com/aphyr/knossos"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:repositories {"sonatype-oss-public"
"https://oss.sonatype.org/content/groups/public/"}
:dependencies [[org.clojure/math.combinatorics "0.1.1"]
[com.taoensso/tufte "1.0.2"]
[potemkin "0.4.3"]
[interval-metrics "1.0.0"]
[com.boundary/high-scale-lib "1.0.6"]
[org.clojars.pallix/analemma "1.0.0"
:exclusions [org.clojure/clojure]]
[org.clojure/tools.logging "0.3.1"]
[org.slf4j/slf4j-log4j12 "1.7.21"]]
; "-verbose:gc" "-XX:+PrintGCDetails"
:test-selectors {:focus :focus}
:jvm-opts ["-Xmx12g"
"-XX:+UseConcMarkSweepGC"
"-XX:+UseParNewGC"
"-XX:+CMSParallelRemarkEnabled"
"-XX:+AggressiveOpts"
"-XX:+UseFastAccessorMethods"
"-XX:MaxInlineLevel=32"
"-XX:MaxRecursiveInlineLevel=2"
"-XX:+UnlockCommercialFeatures"
; "-XX:-OmitStackTraceInFastThrow"
"-server"]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]]}})