This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 9577ca4e78 GH-49526: [CI] Update Maven version from 3.8.7 to 3.9.9
(#49488)
9577ca4e78 is described below
commit 9577ca4e7833eb355c6664c6423b4ab26fa68f14
Author: JB Onofré <[email protected]>
AuthorDate: Mon Mar 16 21:21:46 2026 +0100
GH-49526: [CI] Update Maven version from 3.8.7 to 3.9.9 (#49488)
### Rationale for this change
This is related to https://github.com/apache/arrow-java/pull/1030.
Upgrading to Apache POM 37 on Arrow Java requires Maven 3.9.x as some Maven
plugins require this API version.
### What changes are included in this PR?
Bumps Maven from 3.8.7 to 3.9.9 in `.env` and all CI Dockerfiles that
reference the Maven version:
- `.env`
- `ci/docker/conda-integration.dockerfile`
- `ci/docker/conda-python-hdfs.dockerfile`
- `ci/docker/conda-python-jpype.dockerfile`
- `ci/docker/conda-python-spark.dockerfile`
### Are these changes tested?
Crossbow CI jobs were submitted for the affected configurations (HDFS,
Spark).
### Are there any user-facing changes?
No.
* GitHub Issue: #49526
Authored-by: JB Onofré <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
.env | 2 +-
ci/docker/conda-integration.dockerfile | 2 +-
ci/docker/conda-python-hdfs.dockerfile | 2 +-
ci/docker/conda-python-jpype.dockerfile | 2 +-
ci/docker/conda-python-spark.dockerfile | 2 +-
5 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.env b/.env
index 5d136890f6..b9c7e85609 100644
--- a/.env
+++ b/.env
@@ -66,7 +66,7 @@ HDFS=3.2.1
JDK=11
# LLVM 12 and GCC 11 reports -Wmismatched-new-delete.
LLVM=18
-MAVEN=3.8.7
+MAVEN=3.9.9
NODE=20
NUMBA=latest
NUMBA_CUDA=latest
diff --git a/ci/docker/conda-integration.dockerfile
b/ci/docker/conda-integration.dockerfile
index ac7ca57156..20ccd8f89e 100644
--- a/ci/docker/conda-integration.dockerfile
+++ b/ci/docker/conda-integration.dockerfile
@@ -22,7 +22,7 @@ FROM ${repo}:${arch}-conda-cpp
ARG arch=amd64
# We need to synchronize the following values with the values in .env
# and services.conda-integration in compose.yaml.
-ARG maven=3.8.7
+ARG maven=3.9.9
ARG node=20
ARG yarn=1.22
ARG jdk=17
diff --git a/ci/docker/conda-python-hdfs.dockerfile
b/ci/docker/conda-python-hdfs.dockerfile
index 25d98e2105..42db4d1ca4 100644
--- a/ci/docker/conda-python-hdfs.dockerfile
+++ b/ci/docker/conda-python-hdfs.dockerfile
@@ -21,7 +21,7 @@ ARG python=3.10
FROM ${repo}:${arch}-conda-python-${python}
ARG jdk=11
-ARG maven=3.8.7
+ARG maven=3.9.9
RUN mamba install -q -y \
maven=${maven} \
openjdk=${jdk} \
diff --git a/ci/docker/conda-python-jpype.dockerfile
b/ci/docker/conda-python-jpype.dockerfile
index 60be53d5bf..639796f1b3 100644
--- a/ci/docker/conda-python-jpype.dockerfile
+++ b/ci/docker/conda-python-jpype.dockerfile
@@ -21,7 +21,7 @@ ARG python=3.10
FROM ${repo}:${arch}-conda-python-${python}
ARG jdk=11
-ARG maven=3.8.7
+ARG maven=3.9.9
RUN mamba install -q -y \
maven=${maven} \
openjdk=${jdk} \
diff --git a/ci/docker/conda-python-spark.dockerfile
b/ci/docker/conda-python-spark.dockerfile
index 0c64c88bc5..5765a59b43 100644
--- a/ci/docker/conda-python-spark.dockerfile
+++ b/ci/docker/conda-python-spark.dockerfile
@@ -21,7 +21,7 @@ ARG python=3.10
FROM ${repo}:${arch}-conda-python-${python}
ARG jdk=11
-ARG maven=3.8.7
+ARG maven=3.9.9
ARG numpy=latest
COPY ci/scripts/install_numpy.sh /arrow/ci/scripts/