You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2012/02/26 13:10:22 UTC

svn commit: r1293816 - in /axis/axis1/java/trunk: distribution/pom.xml integration/pom.xml samples/pom.xml

Author: veithen
Date: Sun Feb 26 12:10:22 2012
New Revision: 1293816

URL: http://svn.apache.org/viewvc?rev=1293816&view=rev
Log:
Skip Maven deployment of samples, distributions and integration tests.

Modified:
    axis/axis1/java/trunk/distribution/pom.xml
    axis/axis1/java/trunk/integration/pom.xml
    axis/axis1/java/trunk/samples/pom.xml

Modified: axis/axis1/java/trunk/distribution/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/distribution/pom.xml?rev=1293816&r1=1293815&r2=1293816&view=diff
==============================================================================
--- axis/axis1/java/trunk/distribution/pom.xml (original)
+++ axis/axis1/java/trunk/distribution/pom.xml Sun Feb 26 12:10:22 2012
@@ -131,6 +131,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
     <profiles>

Modified: axis/axis1/java/trunk/integration/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/integration/pom.xml?rev=1293816&r1=1293815&r2=1293816&view=diff
==============================================================================
--- axis/axis1/java/trunk/integration/pom.xml (original)
+++ axis/axis1/java/trunk/integration/pom.xml Sun Feb 26 12:10:22 2012
@@ -1185,6 +1185,12 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
 </project>

Modified: axis/axis1/java/trunk/samples/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/samples/pom.xml?rev=1293816&r1=1293815&r2=1293816&view=diff
==============================================================================
--- axis/axis1/java/trunk/samples/pom.xml (original)
+++ axis/axis1/java/trunk/samples/pom.xml Sun Feb 26 12:10:22 2012
@@ -46,4 +46,14 @@
         <module>stock-sample</module>
         <module>transport-sample</module>
     </modules>
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 </project>