You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by kh...@apache.org on 2015/04/10 17:40:35 UTC

svn commit: r1672683 - /maven/plugins/trunk/maven-verifier-plugin/pom.xml

Author: khmarbaise
Date: Fri Apr 10 15:40:34 2015
New Revision: 1672683

URL: http://svn.apache.org/r1672683
Log:
[MVERIFIER-16] Change execution of goals cause currently the integration tests running twice

Modified:
    maven/plugins/trunk/maven-verifier-plugin/pom.xml

Modified: maven/plugins/trunk/maven-verifier-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-verifier-plugin/pom.xml?rev=1672683&r1=1672682&r2=1672683&view=diff
==============================================================================
--- maven/plugins/trunk/maven-verifier-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-verifier-plugin/pom.xml Fri Apr 10 15:40:34 2015
@@ -136,17 +136,18 @@ under the License.
         <plugins>
           <plugin>
             <artifactId>maven-invoker-plugin</artifactId>
+            <version>1.10</version>
             <configuration>
               <goals>
-                <goal>verify</goal>
+                <goal>install</goal>
               </goals>
             </configuration>
             <executions>
               <execution>
                 <id>integration-test</id>
                 <goals>
-                  <goal>install</goal>
-                  <goal>run</goal>
+                  <goal>integration-test</goal>
+                  <goal>verify</goal>
                 </goals>
               </execution>
             </executions>