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/01/21 19:32:05 UTC

svn commit: r1436538 - in /uima/sandbox/uima-ducc/trunk: src/main/assembly/bin.xml uima-ducc-parent/pom.xml

Author: cwiklik
Date: Mon Jan 21 18:32:05 2013
New Revision: 1436538

URL: http://svn.apache.org/viewvc?rev=1436538&view=rev
Log:
UIMA-2584 Add version string to uima jars

Modified:
    uima/sandbox/uima-ducc/trunk/src/main/assembly/bin.xml
    uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml

Modified: uima/sandbox/uima-ducc/trunk/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/src/main/assembly/bin.xml?rev=1436538&r1=1436537&r2=1436538&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/src/main/assembly/bin.xml (original)
+++ uima/sandbox/uima-ducc/trunk/src/main/assembly/bin.xml Mon Jan 21 18:32:05 2013
@@ -69,7 +69,7 @@ under the License.    
         <include>org.apache.uima:uimaj-as-jms</include>
         <include>org.apache.uima:uimaj-as-activemq</include>
       </includes>      
-      <outputFileNameMapping>${artifact.artifactId}.jar</outputFileNameMapping>
+      <outputFileNameMapping>${artifact.artifactId}-${org.apache.uima.as.version}.jar</outputFileNameMapping>
       <outputDirectory>ducc_runtime/lib/uima</outputDirectory>
       <useProjectArtifact>false</useProjectArtifact>
       <fileMode>644</fileMode> 
@@ -81,7 +81,7 @@ under the License.    
       <includes>
         <include>org.apache.uima:uimaj-core</include>
       </includes>      
-      <outputFileNameMapping>${artifact.artifactId}.jar</outputFileNameMapping>
+      <outputFileNameMapping>${artifact.artifactId}-${org.apache.uima.version}.jar</outputFileNameMapping>
       <outputDirectory>ducc_runtime/lib/uima</outputDirectory>
       <useProjectArtifact>false</useProjectArtifact>
       <fileMode>644</fileMode> 
@@ -520,9 +520,9 @@ under the License.    
     </file>
     
       <file>
-      <source>src/main/cglib/com.springsource.net.sf.cglib-2.2.0.jar</source>
+      <source>src/main/cglib/com.springsource.net.sf.cglib-${cglib.version}.jar</source>
       <outputDirectory>ducc_runtime/lib/springframework</outputDirectory>
-      <destName>com.springsource.net.sf.cglib-2.2.0.jar</destName>
+      <destName>com.springsource.net.sf.cglib-${cglib.version}.jar</destName>
     </file>
     
     <file>

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml?rev=1436538&r1=1436537&r2=1436538&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-parent/pom.xml Mon Jan 21 18:32:05 2013
@@ -62,6 +62,7 @@
 		<mina.core.version>1.1.7</mina.core.version>
 		<aopalliance.version>1.0</aopalliance.version>
 		<google.gson.version>2.2.2</google.gson.version>
+		<cglib.version>2.2.0</cglib.version>
 	</properties>
 
     <!-- dependencyManagement is a declaration section naming each artifact the ducc components   -->