This is an automated email from the ASF dual-hosted git repository.
vhs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 5d0da961b535 chore(ci): Use non-archive repo and upgrade maven binary
(#17723)
5d0da961b535 is described below
commit 5d0da961b535c0277518cbc5b0b7cf28c4307827
Author: voonhous <[email protected]>
AuthorDate: Sat Dec 27 02:07:25 2025 +0800
chore(ci): Use non-archive repo and upgrade maven binary (#17723)
* chore: Use non-archive repo for maven binary download
* Bump maven binary to 3.9.12 and add retries
---
packaging/bundle-validation/Dockerfile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/packaging/bundle-validation/Dockerfile
b/packaging/bundle-validation/Dockerfile
index 995e11ef828b..e986a5b918e3 100644
--- a/packaging/bundle-validation/Dockerfile
+++ b/packaging/bundle-validation/Dockerfile
@@ -34,10 +34,10 @@ RUN printf "\ntaskmanager.numberOfTaskSlots: 2\n" >>
$FLINK_HOME/conf/flink-conf
RUN printf "\nlocalhost\n" >> $FLINK_HOME/conf/workers
# install maven
-RUN wget
https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.tar.gz
+RUN wget -t=3
https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.tar.gz
RUN mkdir -p /usr/share/maven
-RUN tar xzvf apache-maven-3.6.3-bin.tar.gz -C /usr/share/maven
-ENV MAVEN_HOME=/usr/share/maven/apache-maven-3.6.3
+RUN tar xzvf apache-maven-3.9.12-bin.tar.gz -C /usr/share/maven
+ENV MAVEN_HOME=/usr/share/maven/apache-maven-3.9.12
ENV PATH=$MAVEN_HOME/bin:$PATH
RUN mvn --version