Skip to content

Commit 9577ca4

Browse files
authored
GH-49526: [CI] Update Maven version from 3.8.7 to 3.9.9 (#49488)
### Rationale for this change This is related to apache/arrow-java#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é <jbonofre@apache.org> Signed-off-by: Sutou Kouhei <kou@clear-code.com>
1 parent 9082b47 commit 9577ca4

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ HDFS=3.2.1
6666
JDK=11
6767
# LLVM 12 and GCC 11 reports -Wmismatched-new-delete.
6868
LLVM=18
69-
MAVEN=3.8.7
69+
MAVEN=3.9.9
7070
NODE=20
7171
NUMBA=latest
7272
NUMBA_CUDA=latest

ci/docker/conda-integration.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ FROM ${repo}:${arch}-conda-cpp
2222
ARG arch=amd64
2323
# We need to synchronize the following values with the values in .env
2424
# and services.conda-integration in compose.yaml.
25-
ARG maven=3.8.7
25+
ARG maven=3.9.9
2626
ARG node=20
2727
ARG yarn=1.22
2828
ARG jdk=17

ci/docker/conda-python-hdfs.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARG python=3.10
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG jdk=11
24-
ARG maven=3.8.7
24+
ARG maven=3.9.9
2525
RUN mamba install -q -y \
2626
maven=${maven} \
2727
openjdk=${jdk} \

ci/docker/conda-python-jpype.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARG python=3.10
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG jdk=11
24-
ARG maven=3.8.7
24+
ARG maven=3.9.9
2525
RUN mamba install -q -y \
2626
maven=${maven} \
2727
openjdk=${jdk} \

ci/docker/conda-python-spark.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ARG python=3.10
2121
FROM ${repo}:${arch}-conda-python-${python}
2222

2323
ARG jdk=11
24-
ARG maven=3.8.7
24+
ARG maven=3.9.9
2525

2626
ARG numpy=latest
2727
COPY ci/scripts/install_numpy.sh /arrow/ci/scripts/

0 commit comments

Comments
 (0)