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/05/13 17:17:30 UTC

svn commit: r655904 - in /incubator/uima/sandbox/trunk/CasEditor/build-files: build.properties build.xml

Author: joern
Date: Tue May 13 08:17:29 2008
New Revision: 655904

URL: http://svn.apache.org/viewvc?rev=655904&view=rev
Log:
UIMA-1029: Removed step to copy uimaj-ep-runtime plugin

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=655904&r1=655903&r2=655904&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties (original)
+++ incubator/uima/sandbox/trunk/CasEditor/build-files/build.properties Tue May 13 08:17:29 2008
@@ -66,9 +66,6 @@
 # Timestamp for the build.  Used in naming the build output
 timestamp=007
 
-# org.apache.uima.runtime plugin version
-uimaVersion=2.2.2.incubating
-
 #this property indicates whether you want the set of plug-ins and features to be considered during the build to be limited to the ones reachable from the features / plugins being built
 filteredDependencyCheck=false
 

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=655904&r1=655903&r2=655904&view=diff
==============================================================================
--- incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml (original)
+++ incubator/uima/sandbox/trunk/CasEditor/build-files/build.xml Tue May 13 08:17:29 2008
@@ -51,14 +51,6 @@
 	<fail message="Unable to find equinox." 
 		unless="equinox" />
 	
-	<!-- set "uimaj-ep-runtime" property -->
-	<fileset dir="${eclipseLocation}/plugins" 
-		     includes="org.apache.uima.runtime_${uimaVersion}.jar" 
-		     id="uima.plugin.path" />
-	<pathconvert property="uimaj-ep-runtime" refid="uima.plugin.path" setonempty="false" />
-	<fail message="Unable to find UIMA runtime plugin verion ${uimaVersion}" 
-			unless="uimaj-ep-runtime" />
-	
 	<!-- prepare the build directory with the uima runtime plugin and
 	     with the CasEditor sources -->
 	<target name="prepareBuildDirectory">
@@ -66,9 +58,6 @@
 		<mkdir dir="${buildDirectory}/plugins" />
 		<mkdir dir="${buildDirectory}/features" />
 		
-		<antcall target="copyRuntimePlugin">
-		 </antcall>
-		
 		<copy todir="${buildDirectory}/plugins/org.apache.uima.caseditor">
 			<fileset dir="../">
 				<exclude name="**/target/**"/>
@@ -76,15 +65,7 @@
 		</copy>
 	</target>
 
-	<!-- copies the uimaj-runtime eclipse plugin to the build directory -->
-	<target name="copyRuntimePlugin" if="uimaj-ep-runtime">
-		<copy file="${uimaj-ep-runtime}"  
-				todir="${buildDirectory}/plugins/"/>
-	</target>
-
 	<target name="build" depends="prepareBuildDirectory">
-		<!-- not used <property name="buildResultsDirectory" value="${buildDirectory}/build-results" /> -->
-		<!-- not used <property name="builder" location="./build-files" /> -->
 		<java classname="org.eclipse.core.launcher.Main" fork="true" failonerror="true">
 			<arg value="-application" />
 			<arg value="org.eclipse.ant.core.antRunner" />