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/04 14:38:31 UTC

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

Author: hlship
Date: Thu Aug  4 12:38:31 2011
New Revision: 1153867

URL: http://svn.apache.org/viewvc?rev=1153867&view=rev
Log:
Automatically add Gradle provided scope dependencies to the IntelliJ Provided scope

Modified:
    tapestry/tapestry5/trunk/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1153867&r1=1153866&r2=1153867&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Thu Aug  4 12:38:31 2011
@@ -77,7 +77,10 @@ subprojects {
     }
   }
   
-
+  ideaModule {
+    scopes.PROVIDED.plus += configurations.provided
+  }
+  
   dependencies {
       groovy "org.codehaus.groovy:groovy-all:1.7.4"
       
@@ -209,7 +212,6 @@ task aggregateJavadoc(type: Javadoc, gro
    }
  }
 
-
 task clean(type: Delete) {
   delete buildDirName
 }