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 2010/04/07 22:25:28 UTC

svn commit: r931669 - /maven/archetype/branches/archetype-1.0.x/maven-archetype-bundles/pom.xml

Author: hboutemy
Date: Wed Apr  7 20:25:28 2010
New Revision: 931669

URL: http://svn.apache.org/viewvc?rev=931669&view=rev
Log:
added archetype:integration-test goal to integration-test phase

Modified:
    maven/archetype/branches/archetype-1.0.x/maven-archetype-bundles/pom.xml

Modified: maven/archetype/branches/archetype-1.0.x/maven-archetype-bundles/pom.xml
URL: http://svn.apache.org/viewvc/maven/archetype/branches/archetype-1.0.x/maven-archetype-bundles/pom.xml?rev=931669&r1=931668&r2=931669&view=diff
==============================================================================
--- maven/archetype/branches/archetype-1.0.x/maven-archetype-bundles/pom.xml (original)
+++ maven/archetype/branches/archetype-1.0.x/maven-archetype-bundles/pom.xml Wed Apr  7 20:25:28 2010
@@ -65,4 +65,21 @@ under the License.
       <url>scp://people.apache.org/www/maven.apache.org/archetype/maven-archetype-bundles</url>
     </site>
   </distributionManagement>
+
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-archetype-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>it</id>
+            <phase>integration-test</phase>
+            <goals>
+              <goal>integration-test</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
 </project>