Ant is an open-source Java-based build tool. The configuration files are XML-based, calling out a target
tree where various tasks get executed. Each task is run by an object that implements
a particular Task interface.
The binary distribution of Ant includes the latest version of the Apache Xerces2 XML parser.
Ant is distributed at no charge for commercial or non-commercial use. For more information read the LICENSE file.
The latest Ant version can be downloaded from:
http://ant.apache.org/
Installing Ant Contrib 0.6
Information
The Ant-Contrib project is a collection of tasks for Ant and can be be found at:
http://ant-contrib.sourceforge.net/
A few of these tasks are:
- The foreach task - iterates over a list, a list of paths, or both.
- The if task - perform some tasks based on whether a given condition holds true or not.
- The sortlist task - sort a delimited list of items in their natural string order.
- The propertyregex task - performs regular expression operations on an input string, and sets the results to a property.
Operating system used
Windows XP Home Edition Version 5.1 SP 2
Software prerequisites
Ant 1.5 or higher.
Procedure
- Download and unzip ant-contrib-0.6-bin.zip.
For example: C:\Tools\ant_contrib-0.6
- Copy ant-contrib-0.6.jar to the lib directory of your Ant installation.
For example: %ANT_HOME%\lib
- If you want to use one of the tasks in your own project, add the lines:
<taskdef resource="net/sf/antcontrib/antcontrib.properties"/>
to your build file.
- See script build_demo7.xml which can be found in quick guides Examples build.xml.
|
|