You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/07/06 16:53:04 UTC

[iceberg] branch 0.13.x updated: Spark: Update Antlr in Spark 3.2 extensions to 4.8 (#5208)

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

blue pushed a commit to branch 0.13.x
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/0.13.x by this push:
     new 8fcfa71ec Spark: Update Antlr in Spark 3.2 extensions to 4.8 (#5208)
8fcfa71ec is described below

commit 8fcfa71ec1ed30f62e97a29d00a117b404be8627
Author: John Zhuge <jz...@apache.org>
AuthorDate: Wed Jul 6 09:52:59 2022 -0700

    Spark: Update Antlr in Spark 3.2 extensions to 4.8 (#5208)
    
    This will match the Antlr version in Spart 3.2.
---
 spark/v3.2/build.gradle | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spark/v3.2/build.gradle b/spark/v3.2/build.gradle
index 85646e578..45243ce9d 100644
--- a/spark/v3.2/build.gradle
+++ b/spark/v3.2/build.gradle
@@ -154,8 +154,8 @@ project(":iceberg-spark:iceberg-spark-extensions-3.2_2.12") {
 
     // Required because we remove antlr plugin dependencies from the compile configuration, see note above
     // We shade this in Spark3 Runtime to avoid issues with Spark's Antlr Runtime
-    runtimeOnly "org.antlr:antlr4-runtime:4.7.1"
-    antlr "org.antlr:antlr4:4.7.1"
+    runtimeOnly "org.antlr:antlr4-runtime:4.8"
+    antlr "org.antlr:antlr4:4.8"
   }
 
   generateGrammarSource {