-
Notifications
You must be signed in to change notification settings - Fork 6
/
project.clj
44 lines (39 loc) · 1.59 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
41
42
43
44
(defproject music-examples "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:jvm-opts
^:replace
["-server"
"-Xmx512m" ; Minimum and maximum sizes of the heap
"-XX:+UseG1GC"
"-XX:MaxGCPauseMillis=1" ; Specify a target of 20ms for max gc pauses
;"-XX:MaxNewSize=257m" ; Specify the max and min size of the new
;"-XX:NewSize=256m" ; generation to be small
"-XX:+UseTLAB" ; Uses thread-local object allocation blocks. This
; improves concurrency by reducing contention on
; the shared heap lock.
;"-XX:MaxTenuringThreshold=0" ; Makes the full NewSize available to every NewGC
; for GC diagnostics
;"-XX:+PrintGCDetails"
;"-XX:+PrintGCTimeStamps"
]
:dependencies [[org.clojure/clojure "1.9.0"]
[kunstmusik/pink "0.5.0-SNAPSHOT"]
[kunstmusik/score "0.4.0"]
[incanter "1.5.4"]
[prismatic/hiphip "0.2.0"]
[de.sciss/netutil "1.0.1"]
]
:profiles {
:dev {
:global-vars {*warn-on-reflection* true}
}
:profiling {
:plugins [[lein-nodisassemble "0.1.3"]]
:global-vars {*warn-on-reflection* true
*unchecked-math* :warn-on-boxed
}
}}
)