Skip to content

Commit

Permalink
Version bump build plugins (#269)
Browse files Browse the repository at this point in the history
This PR updates all outdated maven build plugins. One update also
requires the minimum maven version 3.5.4, which is already very old.
  • Loading branch information
mofterdinger authored Nov 16, 2023
1 parent 3eaf635 commit e3a949a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<release>${jdk.version}</release>
<encoding>UTF-8</encoding>
Expand All @@ -76,7 +76,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M9</version>
<version>3.2.2</version>
<configuration>
<failIfNoTests>true</failIfNoTests>
</configuration>
Expand All @@ -86,7 +86,7 @@
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>flatten-maven-plugin</artifactId>
<version>1.3.0</version>
<version>1.5.0</version>
<configuration>
<updatePomFile>true</updatePomFile>
<flattenMode>resolveCiFriendliesOnly</flattenMode>
Expand All @@ -113,7 +113,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.2.1</version>
<version>3.4.1</version>
<executions>
<execution>
<id>Project Structure Checks</id>
Expand All @@ -123,7 +123,7 @@
<configuration>
<rules>
<requireMavenVersion>
<version>3.5</version>
<version>3.5.4</version>
</requireMavenVersion>
<requireJavaVersion>
<version>${jdk.version}</version>
Expand Down

0 comments on commit e3a949a

Please sign in to comment.