Skip to content

Commit

Permalink
Upgrade Maven version
Browse files Browse the repository at this point in the history
Maven `3.6.3` is [end-of-life](https://maven.apache.org/docs/history.html#maven-3-6-x-and-before) and is vulnerable to a [CVE](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-26291).

The latest version should be used.
  • Loading branch information
JackPGreen committed May 30, 2024
1 parent 1c33a9a commit c3ba11a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<mavenVersion>3.6.3</mavenVersion>
</properties>

<dependencies>
<!-- Maven -->
<dependency>
<groupId>org.apache.maven</groupId>
<artifactId>maven-core</artifactId>
<version>${mavenVersion}</version>
<version>3.9.7</version>
<scope>provided</scope>
</dependency>

Expand Down

0 comments on commit c3ba11a

Please sign in to comment.