This is an automated email from the ASF dual-hosted git repository.

joshtynjala pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git

commit cf6bf158c01084c3b475a8022354a63fe9b28265
Author: Josh Tynjala <[email protected]>
AuthorDate: Mon Sep 8 13:41:48 2025 -0700

    maven: update from Antlr 2.7.7 and 3.3 to 3.5.2
    
    The Ant build was using antlr-complete 3.5.2 for everything. The Maven 
build seemed to be using a mix of 2.7.7 and 3.3, and antlr instead of 
antlr-complete. This brings everything in line to the same, now single, 
dependency.
---
 compiler-common/pom.xml      |  4 ++--
 compiler-jburg-types/pom.xml |  6 +++---
 compiler/pom.xml             | 10 +++++-----
 3 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/compiler-common/pom.xml b/compiler-common/pom.xml
index b24c859ed..009860456 100644
--- a/compiler-common/pom.xml
+++ b/compiler-common/pom.xml
@@ -67,8 +67,8 @@
     </dependency>
     <dependency>
       <groupId>org.antlr</groupId>
-      <artifactId>antlr</artifactId>
-      <version>3.3</version>
+      <artifactId>antlr-complete</artifactId>
+      <version>3.5.2</version>
     </dependency>
     <dependency>
       <groupId>com.google.guava</groupId>
diff --git a/compiler-jburg-types/pom.xml b/compiler-jburg-types/pom.xml
index 90b23a239..00e220712 100644
--- a/compiler-jburg-types/pom.xml
+++ b/compiler-jburg-types/pom.xml
@@ -124,9 +124,9 @@
       <version>1.10.3</version>
     </dependency>
     <dependency>
-      <groupId>antlr</groupId>
-      <artifactId>antlr</artifactId>
-      <version>2.7.7</version>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr-complete</artifactId>
+      <version>3.5.2</version>
     </dependency>
   </dependencies>
 
diff --git a/compiler/pom.xml b/compiler/pom.xml
index a6166595b..e41bf6874 100644
--- a/compiler/pom.xml
+++ b/compiler/pom.xml
@@ -164,9 +164,9 @@
         </executions>
         <dependencies>
           <dependency>
-            <groupId>antlr</groupId>
-            <artifactId>antlr</artifactId>
-            <version>2.7.7</version>
+            <groupId>org.antlr</groupId>
+            <artifactId>antlr-complete</artifactId>
+            <version>3.5.2</version>
           </dependency>
         </dependencies>
       </plugin>
@@ -600,8 +600,8 @@
     </dependency>
     <dependency>
       <groupId>org.antlr</groupId>
-      <artifactId>antlr</artifactId>
-      <version>3.3</version>
+      <artifactId>antlr-complete</artifactId>
+      <version>3.5.2</version>
     </dependency>
     <dependency>
       <groupId>com.google.guava</groupId>

Reply via email to