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/12/19 18:28:55 UTC

svn commit: r1050911 - /axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml

Author: veithen
Date: Sun Dec 19 17:28:55 2010
New Revision: 1050911

URL: http://svn.apache.org/viewvc?rev=1050911&view=rev
Log:
Let Maven generate checksums when installing the distributions into the local repository.

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=1050911&r1=1050910&r2=1050911&view=diff
==============================================================================
--- axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml (original)
+++ axis/axis2/java/sandesha/trunk/modules/distribution/pom.xml Sun Dec 19 17:28:55 2010
@@ -179,4 +179,21 @@
             </plugin>
         </plugins>
     </build>
+    
+    <profiles>
+        <profile>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <!-- Generating checksums will make it easier to prepare distributions for upload -->
+                        <artifactId>maven-install-plugin</artifactId>
+                        <configuration>
+                            <createChecksum>true</createChecksum>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
 </project>