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 2010/08/21 10:54:13 UTC

svn commit: r987715 - /axis/axis2/java/core/trunk/modules/distribution/pom.xml

Author: veithen
Date: Sat Aug 21 08:54:12 2010
New Revision: 987715

URL: http://svn.apache.org/viewvc?rev=987715&view=rev
Log:
Configured the maven-deploy-plugin with skip=true so that the distributions are no longer deployed to the Maven repository. Note: this needs to be tested during the next release.

Modified:
    axis/axis2/java/core/trunk/modules/distribution/pom.xml

Modified: axis/axis2/java/core/trunk/modules/distribution/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/distribution/pom.xml?rev=987715&r1=987714&r2=987715&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/distribution/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/distribution/pom.xml Sat Aug 21 08:54:12 2010
@@ -274,6 +274,18 @@
                     </execution>
                 </executions>
             </plugin>
+            <plugin>
+                <!-- We don't want to deploy the distributions to the Maven repository.
+                     Reasons:
+                      * Deploying the distributions will heavily 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>