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 2012/12/08 02:25:03 UTC

[3/3] git commit: Remove hack needed in earlier versions of Gradle

Remove hack needed in earlier versions of Gradle


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/e672d29f
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/e672d29f
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/e672d29f

Branch: refs/heads/5.4-js-rewrite
Commit: e672d29f1fe45dc9c214dc9d26177cf00f23f7b4
Parents: df118f7
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Fri Dec 7 10:50:16 2012 -0800
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Fri Dec 7 10:50:16 2012 -0800

----------------------------------------------------------------------
 tapestry-core/build.gradle |    3 ---
 1 files changed, 0 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/e672d29f/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 70baeb0..ba4233b 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -42,9 +42,6 @@ task generateGrammarSource(type: JavaExec) {
   inputs.source fileTree(dir: antlrSource, include: "**/*.g")
   outputs.dir file(antlrOutput)
 
-  // See http://forums.gradle.org/gradle/topics/why_does_a_task_execute_even_when_inputs_and_outputs_are_defined_and_nothing_has_changed
-  outputs.upToDateSpec = new AndSpec();
-
   classpath configurations.antlr3
 
   main "org.antlr.Tool"