You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/11/22 14:22:20 UTC

svn commit: r1412544 - in /maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it: invoker.properties pom.xml

Author: olamy
Date: Thu Nov 22 13:22:19 2012
New Revision: 1412544

URL: http://svn.apache.org/viewvc?rev=1412544&view=rev
Log:
fix it sample when generating a new project

Removed:
    maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it/invoker.properties
Modified:
    maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it/pom.xml

Modified: maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it/pom.xml?rev=1412544&r1=1412543&r2=1412544&view=diff
==============================================================================
--- maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it/pom.xml (original)
+++ maven/archetypes/trunk/maven-archetype-plugin/src/main/resources/archetype-resources/src/it/simple-it/pom.xml Thu Nov 22 13:22:19 2012
@@ -13,4 +13,22 @@
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>@pom.groupId@</groupId>
+        <artifactId>@pom.artifactId@</artifactId>
+        <version>@pom.version@</version>
+        <executions>
+          <execution>
+            <phase>validate</phase>
+            <goals>
+              <goal>touch</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>