You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2011/04/23 01:10:55 UTC

svn commit: r1096080 - in /tapestry/tapestry5/trunk: build.gradle tapestry-ioc/build.gradle

Author: hlship
Date: Fri Apr 22 23:10:55 2011
New Revision: 1096080

URL: http://svn.apache.org/viewvc?rev=1096080&view=rev
Log:
TAP5-116: Turn of live service reloading during tests of all modules except tapestry-ioc

Modified:
    tapestry/tapestry5/trunk/build.gradle
    tapestry/tapestry5/trunk/tapestry-ioc/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1096080&r1=1096079&r2=1096080&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Fri Apr 22 23:10:55 2011
@@ -62,6 +62,10 @@ subprojects {
         
         maxHeapSize = "400M"
         
+        // Turn off live service reloading
+
+        systemProperties["tapestry.service-reloading-enabled"] = "false"
+
         jvmArgs("-XX:MaxPermSize=512m")        
     }
     

Modified: tapestry/tapestry5/trunk/tapestry-ioc/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/build.gradle?rev=1096080&r1=1096079&r2=1096080&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/build.gradle Fri Apr 22 23:10:55 2011
@@ -17,4 +17,10 @@ dependencies {
   compile "org.slf4j:slf4j-log4j12:1.6.1"
     
   compile "org.testng:testng:$testngVersion", { transitive = false }
+}
+
+test
+{
+    // Override the master build.gradle
+    systemProperties.remove("tapestry.service-reloading-enabled")
 }
\ No newline at end of file