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/04/28 00:07:49 UTC

svn commit: r1331611 - /maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/pom.xml

Author: olamy
Date: Fri Apr 27 22:07:49 2012
New Revision: 1331611

URL: http://svn.apache.org/viewvc?rev=1331611&view=rev
Log:
avoid it running twice

Modified:
    maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/pom.xml

Modified: maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/pom.xml?rev=1331611&r1=1331610&r2=1331611&view=diff
==============================================================================
--- maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/pom.xml (original)
+++ maven/plugin-tools/branches/MPLUGIN-189/maven-plugin-plugin/pom.xml Fri Apr 27 22:07:49 2012
@@ -274,30 +274,23 @@
     <profile>
       <id>run-its</id>
       <build>
-        <plugins>
-          <plugin>
-            <artifactId>maven-invoker-plugin</artifactId>
-            <configuration>
-              <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
-              <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
-              <filterProperties>
-                <sitePluginVersion>3.0</sitePluginVersion>
-              </filterProperties>
-              <goals>
-                <goal>verify</goal>
-              </goals>
-            </configuration>
-            <executions>
-              <execution>
-                <id>integration-test</id>
+        <pluginManagement>
+          <plugins>
+            <plugin>
+              <artifactId>maven-invoker-plugin</artifactId>
+              <configuration>
+                <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
+                <localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
+                <filterProperties>
+                  <sitePluginVersion>3.0</sitePluginVersion>
+                </filterProperties>
                 <goals>
-                  <goal>install</goal>
-                  <goal>run</goal>
+                  <goal>verify</goal>
                 </goals>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
+              </configuration>
+            </plugin>
+          </plugins>
+        </pluginManagement>
       </build>
     </profile>
   </profiles>