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 2011/03/12 21:34:05 UTC

svn commit: r1081000 - /tapestry/tapestry5/trunk/build.gradle

Author: hlship
Date: Sat Mar 12 20:34:05 2011
New Revision: 1081000

URL: http://svn.apache.org/viewvc?rev=1081000&view=rev
Log:
TAP5-116: Set up a large heap size and PermGen space for tests across all projects

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1081000&r1=1080999&r2=1081000&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Sat Mar 12 20:34:05 2011
@@ -44,6 +44,10 @@ subprojects {
         useTestNG()
         
         options.suites("src/test/conf/testng.xml")
+        
+        maxHeapSize = "400M"
+        
+        jvmArgs("-XX:MaxPermSize=512m")        
     }
     
     task sourcesJar(type: Jar, dependsOn:classes) {