Skip to content

Commit

Permalink
Merge pull request #309 from groovy/update-required-maven-version
Browse files Browse the repository at this point in the history
Update the required Maven version to align with the compatibility plan
  • Loading branch information
keeganwitt authored Jun 6, 2024
2 parents 61eb031 + 67d1ae8 commit c317564
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>3.0.3-SNAPSHOT</version>
<version>4.0.0-SNAPSHOT</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<mavenVersion>3.2.5</mavenVersion>
<mavenVersion>3.6.3</mavenVersion>
<jacocoPluginVersion>0.8.12</jacocoPluginVersion>
<javadocPluginVersion>3.7.0</javadocPluginVersion>
<shortJavaVersion>8</shortJavaVersion>
Expand Down Expand Up @@ -71,19 +71,26 @@
<version>3.1.0</version>
</dependency>
<dependency>
<!-- fix CVE-2022-4244 and CVE-2022-4245 from org.apache.maven:maven-artifact -->
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>3.5.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- fix CVE-2018-10237, CVE-2020-8908, and CVE-2023-2976 from org.apache.maven:maven-core -->
<!-- fix CVE-2020-8908 and CVE-2023-2976 from org.apache.maven:maven-core -->
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.2.1-jre</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- fix CVE-2022-29599 from org.apache.maven:maven-core -->
<groupId>org.apache.maven.shared</groupId>
<artifactId>maven-shared-utils</artifactId>
<version>3.3.3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<!-- fix CVE-2024-36124 from org.apache.maven:maven-archiver -->
<groupId>org.iq80.snappy</groupId>
<artifactId>snappy</artifactId>
<version>0.5</version>
<scope>runtime</scope>
</dependency>
<!-- main groovy support -->
<dependency>
<groupId>${groovyGroupId}</groupId>
Expand Down

0 comments on commit c317564

Please sign in to comment.