Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the required Maven version to align with the compatibility plan #309

Merged
merged 3 commits into from
Jun 6, 2024
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
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
Loading