You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by jo...@apache.org on 2008/06/04 00:16:11 UTC

svn commit: r662904 - in /incubator/uima/sandbox/trunk/CasEditor: build-files/build.properties build-files/build.xml src/main/manifest/ src/main/manifest/MANIFEST.MF

Author: joern
Date: Tue Jun  3 15:16:09 2008
New Revision: 662904

URL: http://svn.apache.org/viewvc?rev=662904&view=rev
Log:
UIMA-536: Now injects manifest.mf into caseditor.jar file

Added:
    incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/
    incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/MANIFEST.MF   (with props)
Modified:
    incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties
    incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml

Modified: incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties?rev=662904&r1=662903&r2=662904&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties (original)
+++ incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties Tue Jun  3 15:16:09 2008
@@ -58,6 +58,7 @@
 buildType=I
 
 # ID of the build.  Used in naming the build output.
+buildVersion=2.2.2
 buildId=2.2.2-incubating
 
 # Label for the build.  Used in naming the build output

Modified: incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml?rev=662904&r1=662903&r2=662904&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml (original)
+++ incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml Tue Jun  3 15:16:09 2008
@@ -139,7 +139,12 @@
 	</copy>
 	<copy file="../target/casEditorUserGuide/casEditorUserGuide.pdf"  
 			todir="${outputLocation}/${buildLabel}/${buildId}-win32.win32.x86/CasEditor/docs/pdf"/>	
-	
+	
+	<!-- Inject MANIFEST.MF into caseditor.jar file -->
+	<jar destfile="${outputLocation}/${buildLabel}/${buildId}-win32.win32.x86/CasEditor/plugins/org.apache.uima.caseditor_${buildVersion}.incubating/caseditor.jar"
+		manifest="../src/main/manifest/MANIFEST.MF" update="true">
+	</jar>
+		
 	<!-- create win32 build zip-->
 	<zip destfile="${outputLocation}/${buildLabel}/${archivePrefix}-win32.win32.x86-${buildId}.zip"
 		       basedir="${outputLocation}/${buildLabel}/${buildId}-win32.win32.x86"/>
@@ -167,6 +172,11 @@
 	</copy>
 	<copy file="../target/casEditorUserGuide/casEditorUserGuide.pdf"  
 		  todir="${outputLocation}/${buildLabel}/${buildId}-linux.gtk.x86/CasEditor/docs/pdf"/>
+
+	<!-- Inject MANIFEST.MF into caseditor.jar file -->
+	<jar destfile="${outputLocation}/${buildLabel}/${buildId}-linux.gtk.x86/CasEditor/plugins/org.apache.uima.caseditor_${buildVersion}.incubating/caseditor.jar"
+		manifest="../src/main/manifest/MANIFEST.MF" update="true">
+	</jar>		
 		
 	<!-- create linux zip -->		
 	<zip destfile="${outputLocation}/${buildLabel}/${archivePrefix}-linux.gtk.x86-${buildId}.zip"

Added: incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/MANIFEST.MF
URL: http://svn.apache.org/viewvc/incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/MANIFEST.MF?rev=662904&view=auto
==============================================================================
--- incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/MANIFEST.MF (added)
+++ incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/MANIFEST.MF Tue Jun  3 15:16:09 2008
@@ -0,0 +1,7 @@
+Manifest-Version: 1.0
+Implementation-License: http://www.apache.org/licenses/LICENSE-2.0.txt
+Implementation-Title: Apache UIMA Cas Editor
+Implementation-Url: http://incubator.apache.org/uima
+Implementation-Vendor: Apache Software Foundation
+Implementation-Version: 2.2.2-incubating
+Project-Title: Apache UIMA
\ No newline at end of file

Propchange: incubator/uima/sandbox/trunk/CasEditor/src/main/manifest/MANIFEST.MF
------------------------------------------------------------------------------
    svn:mime-type = text/plain