Revision: 17087
          http://sourceforge.net/p/gate/code/17087
Author:   johann_p
Date:     2013-11-13 14:08:47 +0000 (Wed, 13 Nov 2013)
Log Message:
-----------
Why is nobody ever using the BootStrap wizard and instead
copy-pasting ancient build files?
Correcting plugin name, current source/target versions, 
make environment GATE_HOME usable for gate.home

Modified Paths:
--------------
    gate/trunk/plugins/Tagger_NP_Chunking/build.xml

Modified: gate/trunk/plugins/Tagger_NP_Chunking/build.xml
===================================================================
--- gate/trunk/plugins/Tagger_NP_Chunking/build.xml     2013-11-13 09:14:43 UTC 
(rev 17086)
+++ gate/trunk/plugins/Tagger_NP_Chunking/build.xml     2013-11-13 14:08:47 UTC 
(rev 17087)
@@ -1,9 +1,19 @@
-<project name="TreeTagger" basedir="." >
+<project name="Tagger_NP_Chunking" basedir="." default="all" >
   <!-- Prevent Ant from warning about includeantruntime not being set -->
   <property name="build.sysclasspath" value="ignore" />
 
   <property file="build.properties" />
+  <property name="plugin.name" value="Tagger_NP_Chunking"/>
 
+  <!-- Make environment variables available -->
+  <property environment="env" />
+
+  <!-- If environment variable GATE_HOME is set, use it for
+       gate.home (unless it was already set in build.properties -->
+  <condition property="gate.home" value="${env.GATE_HOME}">
+    <isset property="env.GATE_HOME"/>
+  </condition>
+
   <property name="gate.home" location="../.." />
   <property name="gate.lib" location="${gate.home}/lib" />
   <property name="gate.jar" location="${gate.home}/bin/gate.jar" />
@@ -34,8 +44,8 @@
            destdir="${classes.dir}"
            debug="true"
            debuglevel="lines,source"
-           source="1.5"
-           target="1.5" />
+           source="1.6"
+           target="1.6" />
   </target>
 
   <!-- Build JavaDoc documentation -->
@@ -75,6 +85,9 @@
     <delete file="${jar.location}" />
   </target>
 
+  <!-- Build everything - the code and JavaDoc -->
+  <target name="all" depends="jar, javadoc" />
+
   <!-- Targets used by the main GATE build file:
          build: build the plugin - just calls "jar" target
          test : run the unit tests - there aren't any

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
_______________________________________________
GATE-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gate-cvs

Reply via email to