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>