You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2011/10/26 20:40:45 UTC

svn commit: r1189371 - in /tapestry/tapestry5/trunk: build.gradle quickstart/build.gradle

Author: hlship
Date: Wed Oct 26 18:40:45 2011
New Revision: 1189371

URL: http://svn.apache.org/viewvc?rev=1189371&view=rev
Log:
TAP5-1728: Make quickstart smarter about rebuilding its files when the project build.gradle changes (typically, a change of version number)

Modified:
    tapestry/tapestry5/trunk/build.gradle
    tapestry/tapestry5/trunk/quickstart/build.gradle

Modified: tapestry/tapestry5/trunk/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/build.gradle?rev=1189371&r1=1189370&r2=1189371&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/build.gradle (original)
+++ tapestry/tapestry5/trunk/build.gradle Wed Oct 26 18:40:45 2011
@@ -2,7 +2,7 @@ description = "Apache Tapestry 5 Project
 
 // Remember that when generating a release, this should be incremented. Also don't forget to
 // tag the release in Subversion.
-tapestryVersion = "5.3-beta-28"
+tapestryVersion = "5.3-beta-29"
 
 jettyVersion = '7.0.0.v20091005'
 tomcatVersion = '6.0.30'

Modified: tapestry/tapestry5/trunk/quickstart/build.gradle
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/build.gradle?rev=1189371&r1=1189370&r2=1189371&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/build.gradle (original)
+++ tapestry/tapestry5/trunk/quickstart/build.gradle Wed Oct 26 18:40:45 2011
@@ -6,6 +6,7 @@ task processFiltered(type: Copy) {
     srcDir = file('filtered')
 
     inputs.file srcDir
+    inputs.file file("../build.gradle")
     outputs.dir sourceSets.main.classesDir
 
     from srcDir