Stop tiered compilation at 1 in project JVM.

Fixes #1025.

We're doing this for Leiningen itself already, but I was hesitant to
do it for the project JVM as well until the stack trace bug came up.
This commit is contained in:
Phil Hagelberg 2013-02-21 20:58:53 -08:00
parent 9317add4bd
commit ecf6ca40c8

View file

@ -136,7 +136,7 @@
:target-path "target"
:prep-tasks ["javac" "compile"]
:jar-exclusions [#"^\."]
:jvm-opts ["-XX:+TieredCompilation"]
:jvm-opts ["-XX:+TieredCompilation" "-XX:TieredStopAtLevel=1"]
:certificates ["clojars.pem"]
:uberjar-exclusions [#"(?i)^META-INF/[^/]*\.(SF|RSA|DSA)$"]
:test-selectors {:default '(constantly true)}})