Repository: tapestry-5
Updated Branches:
  refs/heads/master 93fbe262a -> 5ee601f49


Increase the Groovy compile heap size for all sub-projects


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

Branch: refs/heads/master
Commit: 2669319a4dc58cb4e7e69629b399466e48e37e16
Parents: 93fbe26
Author: Howard M. Lewis Ship <hls...@apache.org>
Authored: Tue Dec 23 16:34:27 2014 -0800
Committer: Howard M. Lewis Ship <hls...@apache.org>
Committed: Tue Dec 23 16:34:27 2014 -0800

----------------------------------------------------------------------
 build.gradle              | 7 +++++++
 tapestry-ioc/build.gradle | 7 -------
 2 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/2669319a/build.gradle
----------------------------------------------------------------------
diff --git a/build.gradle b/build.gradle
index 9830e52..625986e 100755
--- a/build.gradle
+++ b/build.gradle
@@ -177,6 +177,13 @@ subprojects {
         testRuntime "org.slf4j:slf4j-log4j12:${versions.slf4j}"
     }
 
+    compileTestGroovy {
+        configure(groovyOptions.forkOptions) {
+            memoryMaximumSize = '1g'
+            jvmArgs = ['-XX:MaxPermSize=512m', '-Xms512m', '-Xmx1g']
+        }
+    }
+
     test {
         useTestNG()
 

http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/2669319a/tapestry-ioc/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-ioc/build.gradle b/tapestry-ioc/build.gradle
index dc4fbe8..cc5a43f 100644
--- a/tapestry-ioc/build.gradle
+++ b/tapestry-ioc/build.gradle
@@ -25,11 +25,4 @@ test {
     useJUnit()
     // 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

Reply via email to