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/08/13 01:26:45 UTC

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

Author: hlship
Date: Fri Aug 12 23:26:44 2011
New Revision: 1157291

URL: http://svn.apache.org/viewvc?rev=1157291&view=rev
Log:
TAP5-1608: tapestry-ioc establishes dependency on TestNG that brings much unwanted stuff into runtime classpath

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

Modified: tapestry/tapestry5/trunk/tapestry-ioc/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-ioc/build.gradle?rev=1157291&r1=1157290&r2=1157291&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-ioc/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-ioc/build.gradle Fri Aug 12 23:26:44 2011
@@ -15,11 +15,7 @@ dependencies {
   compile "log4j:log4j:1.2.14"
   compile "org.slf4j:slf4j-log4j12:1.6.1"
 
-  compile "org.testng:testng:$testngVersion", { transitive = false }
-}
-
-ideaModule {
-  scopes.COMPILE.plus += configurations.provided
+  provided "org.testng:testng:$testngVersion", { transitive = false }
 }
 
 test {