Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pinot-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pinot-connectors/pinot-spark-3-connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<url>https://pinot.apache.org/</url>
<properties>
<pinot.root>${basedir}/../..</pinot.root>
<spark.version>3.4.0</spark.version>
<spark.version>3.5.0</spark.version>
<antlr-runtime.version>4.8</antlr-runtime.version>
<scalatest.version>3.1.1</scalatest.version>
<shadeBase>org.apache.pinot.\$internal</shadeBase>
Expand Down
4 changes: 2 additions & 2 deletions pinot-distribution/pinot-assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,10 @@
</file>
<file>
<source>
${pinot.root}/pinot-plugins/pinot-batch-ingestion/pinot-batch-ingestion-spark-3.2/target/pinot-batch-ingestion-spark-3.2-${project.version}-shaded.jar
${pinot.root}/pinot-plugins/pinot-batch-ingestion/pinot-batch-ingestion-spark-3/target/pinot-batch-ingestion-spark-3-${project.version}-shaded.jar
</source>
<destName>
plugins-external/pinot-batch-ingestion/pinot-batch-ingestion-spark-3.2/pinot-batch-ingestion-spark-3.2-${project.version}-shaded.jar
plugins-external/pinot-batch-ingestion/pinot-batch-ingestion-spark-3/pinot-batch-ingestion-spark-3-${project.version}-shaded.jar
</destName>
</file>
<!-- End Include Pinot Batch Ingestion Plugins-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@
<relativePath>..</relativePath>
</parent>

<artifactId>pinot-batch-ingestion-spark-3.2</artifactId>
<name>Pinot Batch Ingestion for Spark 3.2</name>
<artifactId>pinot-batch-ingestion-spark-3</artifactId>
<name>Pinot Batch Ingestion for Spark 3</name>
<url>https://pinot.apache.org/</url>
<properties>
<pinot.root>${basedir}/../../..</pinot.root>
<phase.prop>package</phase.prop>
<scala.major.version>2.12</scala.major.version>
<spark.version>3.2.1</spark.version>
<spark.version>3.5.0</spark.version>
<scala.minor.version>2.12.15</scala.minor.version>
<commons-lang3.version>3.11</commons-lang3.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion pinot-plugins/pinot-batch-ingestion/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<modules>
<module>pinot-batch-ingestion-common</module>
<module>pinot-batch-ingestion-spark-2.4</module>
<module>pinot-batch-ingestion-spark-3.2</module>
<module>pinot-batch-ingestion-spark-3</module>

<module>pinot-batch-ingestion-hadoop</module>
<module>pinot-batch-ingestion-standalone</module>
Expand Down
2 changes: 1 addition & 1 deletion pinot-spi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<artifactId>log4j-slf4j2-impl</artifactId>
</dependency>
<dependency>
<groupId>com.lmax</groupId>
Expand Down
15 changes: 13 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
<snappy-java.version>1.1.10.4</snappy-java.version>
<zstd-jni.version>1.5.2-3</zstd-jni.version>
<lz4-java.version>1.8.0</lz4-java.version>
<log4j.version>2.17.1</log4j.version>
<log4j.version>2.20.0</log4j.version>
<netty.version>4.1.94.Final</netty.version>
<reactivestreams.version>1.0.3</reactivestreams.version>
<jts.version>1.19.0</jts.version>
Expand Down Expand Up @@ -605,7 +605,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.25</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand All @@ -618,9 +618,20 @@
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<!--
We don't use slf4j but slf4j2, so we can just ignore this dependency.
Instead of just remove this dependency, we set the scope as provided.
We cannot just remove the dependency because that would create conflicts in the enforcer
-->
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
Expand Down