3 This library is for contributed Ant tasks that have
4 not been approved for inclusion into the ant core or
8 -------------------------
10 Requires APACHE Ant Version 1.5 or above. Note, that output
11 handlers on the ForEach task will not properly report the
12 task which is outputting the message unless you are using
13 Ant version 1.5.2 or greater.
15 In addition, the <for> task will not work on versions prior
19 Requires Ant Version 1.6 or greater to compile and build the
23 Inclusion in your project
24 -------------------------
25 The easiest way to use the tasks is to use
27 <taskdef resource="net/sf/antcontrib/antlib.xml">
29 <pathelement location="your/path/to/ant-contrib-${version}.jar" />
33 in your build file. If the jar file is on your CLASSPATH or in
34 ANT_HOME/lib you can even simplify this to read
36 <taskdef resource="net/sf/antcontrib/antlib.xml" />
38 For projects which will run under 1.5 versions, you would
39 use the .properties file instead of the antlib.xml file:
41 <taskdef resource="net/sf/antcontrib/antcontrib.properties">
43 <pathelement location="your/path/to/ant-contrib.jar" />