Skip to content

Commit

Permalink
Update dependencies to latest available versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
wrandelshofer committed Sep 13, 2024
1 parent a824866 commit 3d56703
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ on the same computer:

This project requires **at least** the items below to build it from source:

- Maven 3.8.6
- Maven 3.9.8
- OpenJDK SE 22

This project contains optimised code for various JDK versions.
Expand Down
13 changes: 7 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@
</properties>

<build>

<pluginManagement>
<plugins>
<plugin>
Expand Down Expand Up @@ -142,15 +141,18 @@
<artifactId>flatten-maven-plugin</artifactId>
<version>1.6.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
</plugins>
</pluginManagement>

<plugins>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.4.1</version>
<version>3.5.0</version>
<executions>
<execution>
<id>enforce-maven-3</id>
Expand All @@ -160,15 +162,14 @@
<configuration>
<rules>
<requireMavenVersion>
<version>3.8.6</version>
<version>3.9.9</version>
</requireMavenVersion>
</rules>
<fail>true</fail>
</configuration>
</execution>
</executions>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -381,7 +382,7 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.0-M2</version>
<version>5.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 3d56703

Please sign in to comment.