Skip to content
This repository has been archived by the owner on Jan 16, 2020. It is now read-only.

Commit

Permalink
[MPOM-164] Removed prerequisites from pom use maven-enforcer instead
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/maven/pom/trunk@1790440 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
khmarbaise committed Apr 6, 2017
1 parent d4351f5 commit a1d4178
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions asf/pom.xml
Expand Up @@ -59,10 +59,6 @@ under the License.
</mailingList>
</mailingLists>

<prerequisites><!-- just for information: not inherited in child poms -->
<maven>3.0</maven><!-- prerequisite of some plugins -->
</prerequisites>

<scm>
<connection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/asf</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/pom/trunk/asf</developerConnection>
Expand Down Expand Up @@ -299,6 +295,25 @@ under the License.
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<id>enforce-maven-version</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
Expand Down

0 comments on commit a1d4178

Please sign in to comment.