Skip to content
Open
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
21 changes: 17 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

<!--dependency versions in alphabetical order-->
<asynchttpclient.version>2.12.4</asynchttpclient.version>
<bouncycastle.version>1.79</bouncycastle.version>
<bouncycastle.version>1.82</bouncycastle.version>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to be in sync with hadoop-3.5.0

<build-helper-maven-plugin.version>1.8</build-helper-maven-plugin.version>
<buildnumber-maven-plugin.version>1.1</buildnumber-maven-plugin.version>
<checkstyle.version>13.3.0</checkstyle.version>
Expand All @@ -75,11 +75,11 @@
<spotbugs-maven-plugin.version>4.9.3.0</spotbugs-maven-plugin.version>
<plexus-velocity.version>2.3.0</plexus-velocity.version>
<frontend-maven-plugin.version>1.15.0</frontend-maven-plugin.version>
<guava.version>32.0.1-jre</guava.version>
<guava.version>33.4.8-jre</guava.version>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

to be in sync with hadoop-3.5.0

<hadoop.version>3.4.2</hadoop.version>
<jackson.version>2.18.6</jackson.version>
<jersey.version>1.19.4</jersey.version>
<jettison.version>1.5.4</jettison.version>
<jsr305.version>3.0.0</jsr305.version>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can't find any usage

<junit.version>4.13.2</junit.version>
<leveldbjni-all.version>1.8</leveldbjni-all.version>
<lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
Expand All @@ -90,8 +90,9 @@
<protobuf.version>3.25.5</protobuf.version>
<protoc-jar-maven-plugin.version>3.11.4</protoc-jar-maven-plugin.version>
<protoc.path>${env.PROTOC_PATH}</protoc.path>
<reload4j.version>1.2.22</reload4j.version>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

two version of reload4j was coming 1.2.22 and 1.2.19. Better to define our own version than relying on hadoop.
1.2.19 was coming from slf4j-reload4j dependency

<restrict-imports.enforcer.version>3.0.0</restrict-imports.enforcer.version>
<roaringbitmap.version>1.2.1</roaringbitmap.version>
<roaringbitmap.version>1.3.0</roaringbitmap.version>
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

proactively done for iceberg-1.10.x

<scm.url>scm:git:https://gitbox.apache.org/repos/asf/tez.git</scm.url>
<servlet-api.version>3.1.0</servlet-api.version>
<slf4j.version>1.7.36</slf4j.version>
Expand Down Expand Up @@ -268,6 +269,18 @@
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>ch.qos.reload4j</groupId>
<artifactId>reload4j</artifactId>
<version>${reload4j.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
Copy link
Copy Markdown
Contributor Author

@Aggarwal-Raghav Aggarwal-Raghav Apr 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

import.*jackson explicitly used in tez java file but it is relying on hadoop for jackson jars. IMO, this is not correct.

Also 2 version of jackson-core are coming in tez-dist/.../lib 2.14.3 and 2.12.7

 +- org.apache.avro:avro:jar:1.11.4:compile
[INFO]    |  \- com.fasterxml.jackson.core:jackson-core:jar:2.14.3:compile
INFO] |  +- org.apache.hadoop:hadoop-yarn-common:jar:3.4.2:compile
[INFO] |  |  +- com.sun.jersey:jersey-core:jar:1.19.4:compile
[INFO] |  |  |  \- javax.ws.rs:jsr311-api:jar:1.1.1:compile
[INFO] |  |  +- com.google.inject.extensions:guice-servlet:jar:4.2.3:compile
[INFO] |  |  +- com.google.inject:guice:jar:4.2.3:compile
[INFO] |  |  |  +- javax.inject:javax.inject:jar:1:compile
[INFO] |  |  |  \- aopalliance:aopalliance:jar:1.0:compile
[INFO] |  |  +- com.sun.jersey.contribs:jersey-guice:jar:1.19.4:compile
[INFO] |  |  +- com.fasterxml.jackson.core:jackson-core:jar:2.12.7:compile

<version>${jackson.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.asynchttpclient</groupId>
<artifactId>async-http-client</artifactId>
Expand Down