Skip to content

Commit

Permalink
For build require at least Maven 3.9.6 used by Maven Wrapper (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin authored Sep 16, 2024
1 parent f69a55b commit 1a9365d
Showing 1 changed file with 25 additions and 4 deletions.
29 changes: 25 additions & 4 deletions org.eclipse.eclemma.build/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
</developer>
</developers>

<prerequisites>
<maven>3.0.3</maven>
</prerequisites>

<modules>
<module>../org.eclipse.eclemma.target</module>
<module>../org.eclipse.eclemma.core</module>
Expand Down Expand Up @@ -108,6 +104,11 @@
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.5.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-toolchains-plugin</artifactId>
Expand Down Expand Up @@ -139,6 +140,26 @@
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce</id>
<phase>validate</phase>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.9.6</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
Expand Down

0 comments on commit 1a9365d

Please sign in to comment.