You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2016/07/18 10:37:38 UTC

svn commit: r1753202 - /sling/trunk/parent/pom.xml

Author: cziegeler
Date: Mon Jul 18 10:37:38 2016
New Revision: 1753202

URL: http://svn.apache.org/viewvc?rev=1753202&view=rev
Log:
SLING-5860 : Require maven version 3.3.9

Modified:
    sling/trunk/parent/pom.xml

Modified: sling/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/parent/pom.xml?rev=1753202&r1=1753201&r2=1753202&view=diff
==============================================================================
--- sling/trunk/parent/pom.xml (original)
+++ sling/trunk/parent/pom.xml Mon Jul 18 10:37:38 2016
@@ -37,6 +37,11 @@
     <url>http://sling.apache.org</url>
 
     <prerequisites>
+        <!-- This defines only the minimum version for plugins, but not for the build
+             See http://maven.apache.org/ref/3.3.9/maven-model/maven.html#class_prerequisites.
+             Therefore the enforcer plugin needs to verify the maven version. See configuration
+             of the plugin further below
+        -->
         <maven>3.3.9</maven>
     </prerequisites>
 
@@ -136,6 +141,9 @@
                                     </message>
                                     <version>1.7.0</version>
                                 </requireJavaVersion>
+                                <requireMavenVersion>
+                                    <version>3.3.9</version>
+                                </requireMavenVersion>
                             </rules>
                         </configuration>
                     </execution>