Author: veithen Date: Thu Sep 30 19:56:08 2010 New Revision: 1003218 URL: http://svn.apache.org/viewvc?rev=1003218&view=rev Log: Prevent Maven from deploying modules that only contain test cases.
Modified: webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-osgi/pom.xml webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml Modified: webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml?rev=1003218&r1=1003217&r2=1003218&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-integration/pom.xml Thu Sep 30 19:56:08 2010 @@ -126,6 +126,12 @@ </execution> </executions> </plugin> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-osgi/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-osgi/pom.xml?rev=1003218&r1=1003217&r2=1003218&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-osgi/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-osgi/pom.xml Thu Sep 30 19:56:08 2010 @@ -37,4 +37,14 @@ <module>axiom-osgi-build</module> <module>axiom-osgi-run</module> </modules> + <build> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> </project> Modified: webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml?rev=1003218&r1=1003217&r2=1003218&view=diff ============================================================================== --- webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml (original) +++ webservices/commons/trunk/modules/axiom/modules/axiom-tests/pom.xml Thu Sep 30 19:56:08 2010 @@ -113,4 +113,14 @@ <scope>test</scope> </dependency> </dependencies> + <build> + <plugins> + <plugin> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> + </plugins> + </build> </project>