You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2013/09/29 17:03:46 UTC

svn commit: r1527334 - /webservices/axiom/trunk/systests/eclipse-tests/pom.xml

Author: veithen
Date: Sun Sep 29 15:03:46 2013
New Revision: 1527334

URL: http://svn.apache.org/r1527334
Log:
To avoid unexpected side effects, configure inherited=false on the execution instead of the plugin.

Modified:
    webservices/axiom/trunk/systests/eclipse-tests/pom.xml

Modified: webservices/axiom/trunk/systests/eclipse-tests/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/systests/eclipse-tests/pom.xml?rev=1527334&r1=1527333&r2=1527334&view=diff
==============================================================================
--- webservices/axiom/trunk/systests/eclipse-tests/pom.xml (original)
+++ webservices/axiom/trunk/systests/eclipse-tests/pom.xml Sun Sep 29 15:03:46 2013
@@ -61,7 +61,6 @@
             <plugin>
                 <groupId>org.codehaus.gmaven</groupId>
                 <artifactId>gmaven-plugin</artifactId>
-                <inherited>false</inherited>
                 <executions>
                     <execution>
                         <!-- Need this to pass information to the hook scripts. Once maven-invoker-plugin 1.9 is released,
@@ -71,6 +70,7 @@
                         <goals>
                             <goal>execute</goal>
                         </goals>
+                        <inherited>false</inherited>
                         <configuration>
                             <source>
                                 import java.io.*
@@ -91,7 +91,6 @@
             <plugin>
                 <artifactId>maven-invoker-plugin</artifactId>
                 <version>1.8</version>
-                <inherited>false</inherited>
                 <executions>
                     <execution>
                         <!-- Instead of executing the Tycho eclipse-test-plugin project directly, we use the invoker plugin.
@@ -109,6 +108,7 @@
                         <goals>
                             <goal>run</goal>
                         </goals>
+                        <inherited>false</inherited>
                         <configuration>
                             <streamLogs>true</streamLogs>
                             <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>