Skip to content
Merged
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
8 changes: 4 additions & 4 deletions projects/maven/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@

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

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 && \
unzip maven.zip -d $SRC/maven-3.8.8 && \
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 && \
unzip maven.zip -d $SRC/maven-3.9.11 && \
rm -rf maven.zip

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

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

ADD pom.xml build.sh ${SRC}/
ADD src/ ${SRC}/src/
WORKDIR ${SRC}/maven
WORKDIR ${SRC}/maven
Loading