Skip to content

Commit

Permalink
build: Remove hardcoded dependencies from POM file (#516)
Browse files Browse the repository at this point in the history
Also, use apache-maven-3.9.6

Signed-off-by: Oleg Kopysov <[email protected]>
  • Loading branch information
o-kopysov authored May 7, 2024
1 parent 5808878 commit d915f4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .clusterfuzzlite/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM gcr.io/oss-fuzz-base/base-builder-jvm@sha256:0a35a200381bf7ebda008131f8b1b7f19fd9c1bba1cfbaa9e4068c124761ecfd

RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o maven.zip && \
RUN curl -L https://archive.apache.org/dist/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.zip -o maven.zip && \
unzip maven.zip -d $SRC/maven && \
rm -rf maven.zip

ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
ENV MVN $SRC/maven/apache-maven-3.9.6/bin/mvn

RUN rm -rf $SRC/lpvs

Expand Down
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<phase>package</phase>
Expand Down Expand Up @@ -227,7 +226,6 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<overview>${basedir}/doc/overview.html</overview>
<doctitle>${project.name} ${project.version} API</doctitle>
Expand Down

0 comments on commit d915f4e

Please sign in to comment.