Skip to content

Commit 526094b

Browse files
maven: fix build
1 parent 5e07b52 commit 526094b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/maven/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
FROM gcr.io/oss-fuzz-base/base-builder-jvm
1818

19-
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.8.8/binaries/apache-maven-3.8.8-bin.zip -o maven.zip && \
20-
unzip maven.zip -d $SRC/maven-3.8.8 && \
19+
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.9.11/binaries/apache-maven-3.9.11-bin.zip -o maven.zip && \
20+
unzip maven.zip -d $SRC/maven-3.9.11 && \
2121
rm -rf maven.zip
2222

23-
ENV MVN $SRC/maven-3.8.8/apache-maven-3.8.8/bin/mvn
23+
ENV MVN $SRC/maven-3.9.11/apache-maven-3.9.11/bin/mvn
2424

2525
WORKDIR ${SRC}
2626
#
@@ -30,4 +30,4 @@ RUN git clone https://github.com/apache/maven.git
3030

3131
ADD pom.xml build.sh ${SRC}/
3232
ADD src/ ${SRC}/src/
33-
WORKDIR ${SRC}/maven
33+
WORKDIR ${SRC}/maven

0 commit comments

Comments
 (0)