You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by tw...@apache.org on 2009/07/02 11:54:21 UTC

svn commit: r790525 - /incubator/uima/uimaj/trunk/uimaj-eclipse-update-site/build.xml

Author: twgoetz
Date: Thu Jul  2 09:54:21 2009
New Revision: 790525

URL: http://svn.apache.org/viewvc?rev=790525&view=rev
Log:
Jira UIMA-1411: fix error message in ant build script about eclipse.home property.  Add warning about incorrect build instructions.

https://issues.apache.org/jira/browse/UIMA-1411

Modified:
    incubator/uima/uimaj/trunk/uimaj-eclipse-update-site/build.xml

Modified: incubator/uima/uimaj/trunk/uimaj-eclipse-update-site/build.xml
URL: http://svn.apache.org/viewvc/incubator/uima/uimaj/trunk/uimaj-eclipse-update-site/build.xml?rev=790525&r1=790524&r2=790525&view=diff
==============================================================================
--- incubator/uima/uimaj/trunk/uimaj-eclipse-update-site/build.xml (original)
+++ incubator/uima/uimaj/trunk/uimaj-eclipse-update-site/build.xml Thu Jul  2 09:54:21 2009
@@ -19,6 +19,17 @@
 under the License.    
 -->
 
+<!--
+WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING 
+
+The instructions below that talk about the "new" way of doing
+things appear to be just a plan.  There are no poms in the
+feature projects, and the features and updated site are still
+built the "old" way.  Just set an eclipse.home property and run
+the default target.
+
+-->
+
 <!-- This script is run from ant and builds a new update site.
 
   Usage:
@@ -128,6 +139,9 @@
 
 <project name="build update site" default="all" basedir=".">
   
+	   <!-- Set this to your eclipse installation
+	    <property name="eclipse.home" location=""/> -->
+
   
   <condition property="eclipse.home" value="${uima-maven-build-eclipse-home}">
     <not>
@@ -141,7 +155,7 @@
   </condition>
   
   <fail unless="eclipse.home"
-    message="********** Please set up and use a maven profile with the property uima-maven-build-eclipse-home set to an Eclipse installation at level 3.3 or later, e.g. c:/eclipses/3.3/eclipse"/>
+    message="********** Please set up and use an ant property eclipse.home set to an Eclipse installation at level 3.3 or later, e.g. c:/eclipses/3.3/eclipse"/>
   
   <property name="eclipse.home" location="${uima-maven-build-eclipse-home}"/>