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 2015/05/25 00:00:48 UTC

svn commit: r1681533 - /webservices/axiom/trunk/pom.xml

Author: veithen
Date: Sun May 24 22:00:47 2015
New Revision: 1681533

URL: http://svn.apache.org/r1681533
Log:
Use better approach to skip executions defined in the parent POM. This avoids issues with forked build lifecycles.

Modified:
    webservices/axiom/trunk/pom.xml

Modified: webservices/axiom/trunk/pom.xml
URL: http://svn.apache.org/viewvc/webservices/axiom/trunk/pom.xml?rev=1681533&r1=1681532&r2=1681533&view=diff
==============================================================================
--- webservices/axiom/trunk/pom.xml (original)
+++ webservices/axiom/trunk/pom.xml Sun May 24 22:00:47 2015
@@ -888,12 +888,10 @@
                             <execution>
                                 <!-- Skip the execution configured in org.apache:apache. We use our own configuration. -->
                                 <id>attach-sources</id>
+                                <phase>none</phase>
                                 <goals>
                                     <goal>jar</goal>
                                 </goals>
-                                <configuration>
-                                    <skipSource>true</skipSource>
-                                </configuration>
                             </execution>
                         </executions>
                         <configuration>
@@ -906,9 +904,7 @@
                             <execution>
                                 <!-- The source release is built by the distribution module -->
                                 <id>source-release-assembly</id>
-                                <configuration>
-                                    <skipAssembly>true</skipAssembly>
-                                </configuration>
+                                <phase>none</phase>
                             </execution>
                         </executions>
                     </plugin>