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/09 18:51:19 UTC

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

Author: cwiklik
Date: Sat Nov  9 17:51:18 2013
New Revision: 1540347

URL: http://svn.apache.org/r1540347
Log:
UIMA-2881 add ant plugin to rename source zip file

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=1540347&r1=1540346&r2=1540347&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/pom.xml (original)
+++ uima/sandbox/uima-ducc/trunk/pom.xml Sat Nov  9 17:51:18 2013
@@ -356,7 +356,29 @@
 								</configuration>
 							</execution>
 						</executions>
-					</plugin>				
+					</plugin>		
+					<!--  need this plugin to rename source zip file  -->		
+					<plugin>
+					    <groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-antrun-plugin</artifactId>
+						<executions>
+						   <execution>
+						      <id>rename-source</id>
+						      <phase>package</phase>
+						      <goals>
+						         <goal>run</goal>
+						      </goals>
+						      <configuration>
+							     <target>
+							         <move file="target/uima-ducc-source-release.zip" 
+							             tofile="target/uima-ducc-${project.version}-source-release.zip" />
+							     
+							     </target>
+						      </configuration>
+						   </execution>
+						</executions>
+						
+					</plugin>
 					<plugin>
 						<artifactId>maven-deploy-plugin</artifactId>
 						<configuration>