You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2014/12/24 00:45:35 UTC

[3/4] tapestry-5 git commit: Force up larger heap for compiling Groovy tests

Force up larger heap for compiling Groovy tests


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/15a33171
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/15a33171
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/15a33171

Branch: refs/heads/master
Commit: 15a331713734720f984d53c8275f3210f86d71fa
Parents: 7e8fc83
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Tue Dec 23 15:33:43 2014 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Tue Dec 23 15:33:43 2014 -0800

----------------------------------------------------------------------
 tapestry-ioc/build.gradle | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/15a33171/tapestry-ioc/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-ioc/build.gradle b/tapestry-ioc/build.gradle
index 5a5321f..dc4fbe8 100644
--- a/tapestry-ioc/build.gradle
+++ b/tapestry-ioc/build.gradle
@@ -26,3 +26,10 @@ test {
     // Override the master build.gradle
     systemProperties.remove("tapestry.service-reloading-enabled")
 }
+
+compileTestGroovy {
+    configure(groovyOptions.forkOptions) {
+        memoryMaximumSize = '1g'
+        jvmArgs = ['-XX:MaxPermSize=512m', '-Xms512m', '-Xmx1g']
+    }
+}
\ No newline at end of file