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/01 01:15:46 UTC

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

Author: hlship
Date: Thu Mar 31 23:15:46 2011
New Revision: 1087491

URL: http://svn.apache.org/viewvc?rev=1087491&view=rev
Log:
TAP5-116: Set up test compile and runtime classpaths to include the provided configuration

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1087491&r1=1087490&r2=1087491&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Thu Mar 31 23:15:46 2011
@@ -42,6 +42,10 @@ subprojects {
       main { 
         compileClasspath += configurations.provided 
       }
+      test {
+        compileClasspath += configurations.provided
+        runtimeClasspath += configurations.provided
+      }
     }