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/10/18 02:17:10 UTC

[4/9] git commit: Restore missing task dependency that kept ANTLR source from being generated

Restore missing task dependency that kept ANTLR source from being generated


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

Branch: refs/heads/5.4-js-rewrite
Commit: 61199a3a6367413a82dd18543b7d970bc891c2bf
Parents: 7b54262
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Wed Oct 17 12:53:11 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Wed Oct 17 12:53:11 2012 -0700

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


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/61199a3a/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 9cdf2f7..166d825 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -85,7 +85,10 @@ idea.module {
   excludeDirs.clear()
 }
 
-compileJava.options.fork(memoryMaximumSize: '512m')
+compileJava {
+    dependsOn generateGrammarSource
+    options.fork(memoryMaximumSize: '512m')
+}
 
 // Not sure why this is necessary:
 compileTestGroovy.dependsOn compileTestJava