Author: veithen Date: Sun Dec 19 13:30:44 2010 New Revision: 1050844 URL: http://svn.apache.org/viewvc?rev=1050844&view=rev Log: Don't deploy the distributions to the Maven repository. Users should download them from the mirrors.
Modified: axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Modified: axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml URL: http://svn.apache.org/viewvc/axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml?rev=1050844&r1=1050843&r2=1050844&view=diff ============================================================================== --- axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml (original) +++ axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Sun Dec 19 13:30:44 2010 @@ -165,6 +165,18 @@ <generateReports>false</generateReports> </configuration> </plugin> + <plugin> + <!-- We don't want to deploy the distributions to the Maven repository. + Reasons: + * Deploying the distributions will increase the size of + each release on the Maven repos. + * There is also the risk that users may start downloading the non-Maven + archives from Maven repos rather than the mirrors. --> + <artifactId>maven-deploy-plugin</artifactId> + <configuration> + <skip>true</skip> + </configuration> + </plugin> </plugins> </build> </project>