You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jo...@apache.org on 2011/06/23 05:33:12 UTC

svn commit: r1138724 - /tapestry/tapestry5/trunk/tapestry-core/build.gradle

Author: joshcanfield
Date: Thu Jun 23 03:33:12 2011
New Revision: 1138724

URL: http://svn.apache.org/viewvc?rev=1138724&view=rev
Log:
TAP5-116: after clean buildDir does not exist. Move code to doFirst so that it's only evaluated when the ideaModule task is run.

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

Modified: tapestry/tapestry5/trunk/tapestry-core/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/build.gradle?rev=1138724&r1=1138723&r2=1138724&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/build.gradle (original)
+++ tapestry/tapestry5/trunk/tapestry-core/build.gradle Thu Jun 23 03:33:12 2011
@@ -58,7 +58,7 @@ task generateProjectProperties(dependsOn
   }
 }
 
-ideaModule {
+ideaModule.doFirst {
   excludeDirs -= buildDir
 
   def generatedDir = file("$buildDir/generated-sources")
@@ -74,4 +74,4 @@ compileJava.dependsOn generateGrammarSou
 // Not sure why this is necessary:
 compileTestGroovy.dependsOn compileTestJava
 
-jar.dependsOn generateProjectProperties
\ No newline at end of file
+jar.dependsOn generateProjectProperties