diff options
author | Eduardo Julian | 2016-10-26 02:16:07 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-10-26 02:16:07 -0400 |
commit | a7ea5fd95a0758dce37e896f8db1b807ed5c255a (patch) | |
tree | 836940adaf53259d26623d543073da4e052ee319 | |
parent | f740912996202aee61ff89ccaa9238cfb277e031 (diff) |
- Now using various JVM options to speed-up compiler execution.
-rw-r--r-- | project.clj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/project.clj b/project.clj index 726b3b120..20e2d32b6 100644 --- a/project.clj +++ b/project.clj @@ -22,4 +22,7 @@ :classifiers {:sources {:resource-paths ["src"]} :javadoc {:resource-paths ["src"]}} + + :jvm-opts ^:replace ["-server" "-Xms2048m" "-Xmx2048m" + "-XX:+OptimizeStringConcat"] ) |