Skip to content
Open
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 build-tools/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ RUN apk add --no-cache curl tar \
####################

# Switching to eclipse-temurin to resolves cross-platform amd64/arm64 architecture issues
FROM eclipse-temurin:21-jdk-noble AS tezbase
FROM eclipse-temurin:25-jdk-noble AS tezbase

WORKDIR /root
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@
<!-- Build Properties -->
<!-- Default empty argLine to prevent Surefire crashes when the 'jacoco' profile is inactive -->
<argLine/>
<javaVersion>21</javaVersion>
<maven.compiler.release>21</maven.compiler.release>
<javaVersion>25</javaVersion>
<maven.compiler.release>25</maven.compiler.release>
<version.maven-shade-plugin>3.6.2</version.maven-shade-plugin>

@Aggarwal-Raghav Aggarwal-Raghav Jun 26, 2026

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Better to move apache parent pom to 38 as it has been released and has <version.maven-shade-plugin>3.6.2</version.maven-shade-plugin> by default

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.

Let me check and verify it. thanks !

<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<failIfNoTests>false</failIfNoTests>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion tez-dist/src/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN mkdir -p /opt/tez \
-C /opt/tez \
&& rm -rf /opt/tez-$TEZ_VERSION.tar.gz

FROM eclipse-temurin:21-jdk-ubi9-minimal AS run
FROM eclipse-temurin:25-jdk-ubi10-minimal AS run

ARG UID=1000
ARG TEZ_VERSION
Expand Down