You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2018/02/25 16:33:01 UTC

svn commit: r1825310 - /maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

Author: hboutemy
Date: Sun Feb 25 16:33:01 2018
New Revision: 1825310

URL: http://svn.apache.org/viewvc?rev=1825310&view=rev
Log:
added Maven prerequisite

Modified:
    maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml

Modified: maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml?rev=1825310&r1=1825309&r2=1825310&view=diff
==============================================================================
--- maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml (original)
+++ maven/archetypes/trunk/maven-archetype-plugin/src/main/resources-filtered/archetype-resources/pom.xml Sun Feb 25 16:33:01 2018
@@ -30,11 +30,15 @@
   <!-- FIXME change it to the project's website -->
   <url>http://www.example.com</url>
 
+  <prerequisites>
+    <maven>${maven.version}</maven>
+  </prerequisites>
+
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <project.compiler.source>1.7</project.compiler.source>
     <project.compiler.target>1.7</project.compiler.target>
-    <maven.version>3.5.2</maven.version>
+    <maven.version>3.0.4</maven.version>
   </properties>
 
   <dependencies>