Skip to content

Commit

Permalink
[hotfix][spark] Fix antlr4-runtime dependency of paimon-spark-common
Browse files Browse the repository at this point in the history
  • Loading branch information
SteNicholas committed Sep 20, 2023
1 parent 14cb7b7 commit 3d1b714
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 0 additions & 4 deletions paimon-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ under the License.
<artifactId>paimon-common</artifactId>
<name>Paimon : Common</name>

<properties>
<antlr4.version>4.7</antlr4.version>
</properties>

<dependencies>
<dependency>
<groupId>org.apache.paimon</groupId>
Expand Down
2 changes: 1 addition & 1 deletion paimon-common/src/main/resources/META-INF/NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Apache Software Foundation (http://www.apache.org/).
This project bundles the following dependencies under the BSD 3-clause license.
You find them under licenses/LICENSE.antlr-runtime and licenses/LICENSE.janino.

- org.antlr:antlr4-runtime:4.7
- org.antlr:antlr4-runtime:4.8
- org.codehaus.janino:janino:3.0.11
- org.codehaus.janino:commons-compiler:3.0.11
- it.unimi.dsi:fastutil:8.5.12
7 changes: 6 additions & 1 deletion paimon-spark/paimon-spark-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,11 @@ under the License.
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr4-runtime</artifactId>
<version>${antlr4.version}</version>
</dependency>
<dependency>
<groupId>org.scalatest</groupId>
<artifactId>scalatest_${scala.binary.version}</artifactId>
Expand Down Expand Up @@ -280,7 +285,7 @@ under the License.
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr4-maven-plugin</artifactId>
<version>${antlr4-maven-plugin.version}</version>
<version>${antlr4.version}</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ under the License.
<paimon.shade.jackson.version>2.14.2</paimon.shade.jackson.version>
<paimon.shade.guava.version>30.1.1-jre</paimon.shade.guava.version>
<paimon.shade.caffeine.version>2.9.3</paimon.shade.caffeine.version>
<antlr4.version>4.8</antlr4.version>
<hadoop.version>2.8.5</hadoop.version>
<scala.version>2.12.15</scala.version>
<scala.binary.version>2.12</scala.binary.version>
Expand Down Expand Up @@ -126,7 +127,6 @@ under the License.
<avro.version>1.11.1</avro.version>
<kafka.version>3.2.3</kafka.version>
<scala-maven-plugin.version>3.2.2</scala-maven-plugin.version>
<antlr4-maven-plugin.version>4.8</antlr4-maven-plugin.version>
<jsoup.version>1.15.3</jsoup.version>
</properties>

Expand Down

0 comments on commit 3d1b714

Please sign in to comment.