You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2014/07/01 19:32:36 UTC

[2/3] git commit: update ANTLR to 3.5.2, fixes issues when building the grammar with Java 8 see https://github.com/antlr/antlr3/issues/151

update ANTLR to 3.5.2, fixes issues when building the grammar with Java 8
see https://github.com/antlr/antlr3/issues/151


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

Branch: refs/heads/master
Commit: 7702038519af9a548de52b757446b02212f7165f
Parents: a975509
Author: Jochen Kemnade <jk...@apache.org>
Authored: Tue Jul 1 19:08:32 2014 +0200
Committer: Jochen Kemnade <jk...@apache.org>
Committed: Tue Jul 1 19:08:32 2014 +0200

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


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/77020385/tapestry-core/build.gradle
----------------------------------------------------------------------
diff --git a/tapestry-core/build.gradle b/tapestry-core/build.gradle
index 41c2adf..c16cd48 100644
--- a/tapestry-core/build.gradle
+++ b/tapestry-core/build.gradle
@@ -27,12 +27,12 @@ dependencies {
     compile "commons-codec:commons-codec:1.5"
 
     // Transitive will bring in the unwanted string template library as well
-    compile "org.antlr:antlr-runtime:3.3", {
+    compile "org.antlr:antlr-runtime:3.5.2", {
         exclude group: "org.antlr", module: "stringtemplate"
     }
 
     // Antlr3 tool path used with the antlr3 task
-    antlr3 "org.antlr:antlr:3.3"
+    antlr3 "org.antlr:antlr:3.5.2"
 
     testRuntime "org.hsqldb:hsqldb:1.8.0.10"
 }