You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by cw...@apache.org on 2013/11/15 15:57:43 UTC

svn commit: r1542281 - /uima/sandbox/uima-ducc/trunk/pom.xml

Author: cwiklik
Date: Fri Nov 15 14:57:42 2013
New Revision: 1542281

URL: http://svn.apache.org/r1542281
Log:
UIMA-2881 removed checksums from non-release builds

Modified:
    uima/sandbox/uima-ducc/trunk/pom.xml

Modified: uima/sandbox/uima-ducc/trunk/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/pom.xml?rev=1542281&r1=1542280&r2=1542281&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/pom.xml (original)
+++ uima/sandbox/uima-ducc/trunk/pom.xml Fri Nov 15 14:57:42 2013
@@ -205,7 +205,7 @@
 
 			</plugin>
 
-			<plugin>
+			<!-- plugin>
 				<artifactId>maven-antrun-plugin</artifactId>
 				<executions>
 					<execution>
@@ -232,7 +232,7 @@
 						</configuration>
 					</execution>
 				</executions>
-			</plugin>
+			</plugin -->
 
 			<plugin>
 				<groupId>org.apache.maven.plugins</groupId>
@@ -417,7 +417,40 @@
 							<skip>true</skip>
 						</configuration>
 					</plugin>
-					<plugin>
+
+
+			<plugin>
+				<artifactId>maven-antrun-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>generate checksums for binary artifacts</id>
+						<goals>
+							<goal>run</goal>
+						</goals>
+						<phase>verify</phase>
+						<configuration>
+							<target>
+								<checksum algorithm="sha1" format="MD5SUM">
+									<fileset dir="${project.build.directory}">
+										<include name="*.zip" />
+										<include name="*.gz" />
+									</fileset>
+								</checksum>
+								<checksum algorithm="md5" format="MD5SUM">
+									<fileset dir="${project.build.directory}">
+										<include name="*.zip" />
+										<include name="*.gz" />
+									</fileset>
+								</checksum>
+							</target>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+
+
+
+					<!--plugin>
 						<artifactId>maven-antrun-plugin</artifactId>
 						<executions>
 							<execution>
@@ -436,7 +469,7 @@
 								</configuration>
 							</execution>
 						</executions>
-					</plugin>
+					</plugin -->
 
       		
 			<!-- run Release Audit Tool (RAT) on src and bin distrs -->