The latest stable version of Ant can be downloaded from http://jakarta.apache.org/builds/ant/release/v1.4.1/bin/. If you like living on the edge, you can download the latest version from http://jakarta.apache.org/builds/ant/nightly/.
If you prefer the source edition, you can download the source for the latest Ant release from http://jakarta.apache.org/builds/ant/release/v1.4.1/src/. Again, if you prefer the edge, you can access the code as it is being developed via CVS. The Jakarta website has details on accessing CVS. Please checkout the jakarta-ant module. See the section Building Ant on how to build Ant from the source code. You can also access the Ant CVS repository on-line.
To build and use Ant, you must have a JAXP-compliant XML parser installed and available on your classpath.
The binary distribution of Ant includes the latest version of the
Apache Crimson XML parser.
Please see
http://java.sun.com/xml/
for more information about JAXP.
If you wish to use a different JAXP-compliant parser, you should remove
jaxp.jar
and crimson.jar
from Ant's lib
directory.
You can then either put the jars from your preferred parser into Ant's
lib
directory or put the jars on the system classpath.
For the current version of Ant, you will also need a JDK installed on your system, version 1.1 or later. A future version of Ant will require JDK 1.2 or later.
The binary distribution of Ant consists of three directories:
bin
,
docs
and
lib
Only the bin
and lib
directories are
required to run Ant.
To install Ant, choose a directory and copy the distribution
file there. This directory will be known as ANT_HOME.
Windows 95 and Windows 98 Note: | |
On these systems, the script used to launch Ant will have
problems if ANT_HOME is a long filename. This is due to
limitations in the OS's handling of the "for"
batch-file statement. It is recommended, therefore, that Ant be
installed in a short path, such as C:\Ant.
|
bin
directory to your path.ANT_HOME
environment variable to the
directory where you installed Ant. On some operating systems the ant
wrapper scripts can guess ANT_HOME
(Unix dialects and
Windows NT/2000) - but it is better to not rely on this behavior.JAVA_HOME
environment variable
(see the Advanced section below).
This should be set to the directory where your JDK is installed.Note: Do not install Ant's ant.jar file into the lib/ext directory of the JDK/JRE. Ant is an application, whilst the extension directory is intended for JDK extensions. In particular there are security restrictions on the classes which may be loaded by an extension.
Ant supports a number of optional tasks. An optional task is a task which
typically requires an external library to function. The optional tasks are
packaged separately from the core Ant tasks. This package is available in
the same download directory as the core ant distribution. The current
jar containing optional tasks is named jakarta-ant-1.4.1-optional.jar
.
This jar should be downloaded and placed in the lib directory of your Ant
installation.
The external libraries required by each of the optional tasks is detailed in the Library Dependencies section. These external libraries may either be placed in Ant's lib directory, where they will be picked up automatically, or made available on the system CLASSPATH environment variable.
Assume Ant is installed in c:\ant\
. The following sets up the
environment:
set ANT_HOME=c:\ant set JAVA_HOME=c:\jdk1.2.2 set PATH=%PATH%;%ANT_HOME%\bin
Assume Ant is installed in /usr/local/ant
. The following sets up
the environment:
export ANT_HOME=/usr/local/ant export JAVA_HOME=/usr/local/jdk-1.2.2 export PATH=${PATH}:${ANT_HOME}/bin
There are lots of variants that can be used to run Ant. What you need is at least the following:
ant.jar
and any jars/classes
needed for your chosen JAXP-compliant XML parser.classes.zip
file of the JDK must be added to the classpath; for JDK 1.2 or JDK 1.3, tools.jar
must be added. The scripts supplied with Ant,
in the bin
directory, will add
the required JDK classes automatically, if the JAVA_HOME
environment variable is set.ant.home
must be set to the directory containing where you installed Ant. Again
this is set by the Ant scripts to the value of the ANT_HOME environment
variable.To build Ant from source, you can either install the Ant source distribution or checkout the jakarta-ant module from CVS.
Once you have installed the source, change into the installation directory.
Set the JAVA_HOME
environment variable
to the directory where the JDK is installed.
See Installing Ant
for examples on how to do this for your operating system.
Make sure you have downloaded any auxiliary jars required to
build tasks you are interested in. These should either be available
on the CLASSPATH or added to the lib/optional
directory.
See Library Dependencies
for a list of jar requirements for various features.
Note that this will make the auxiliary jars
available for the building of Ant only. For running Ant you will
still need to
make the jars available as described under
Installing Ant.
Your are now ready to build Ant:
build -Ddist.dir=<directory_to_contain_Ant_distribution> dist
(Windows)
build.sh -Ddist.dir=<directory_to_contain_Ant_distribution> dist
(Unix)
This will create a binary distribution of Ant in the directory you specified.
The above action does the following:
build.xml
file.
On most occasions you will not need to explicitly bootstrap Ant since the build
scripts do that for you. If however, the build file you are using makes use of features
not yet compiled into the bootstrapped Ant, you will need to manually bootstrap.
Run bootstrap.bat
(Windows) or bootstrap.sh
(UNIX)
to build a new bootstrap version of Ant.
ANT_HOME
directory, you can use:
You can avoid the lengthy Javadoc step, if desired, with:
build install
(Windows)
build.sh install
(Unix)
This will only install the
build install-lite
(Windows)
build.sh install-lite
(Unix)
bin
and lib
directories.
Both the install
and
install-lite
targets will overwrite
the current Ant version in ANT_HOME
.
The following libraries are needed in your CLASSPATH or in the
install directory's lib
directory if you are using the
indicated feature. Note that only one of the regexp libraries is
needed for use with the mappers. You will also need to install the
Ant optional jar containing the task definitions to make these
tasks available. Please refer to the
Installing Ant / Optional Tasks section above.
Jar Name | Needed For | Available At |
An XSL transformer like Xalan or XSL:P | style task | http://xml.apache.org/xalan-j/index.html or http://www.clc-marketing.com/xslp/ |
jakarta-regexp-1.2.jar | regexp type with mappers | jakarta.apache.org/regexp/ |
jakarta-oro-2.0.1.jar | regexp type with mappers and the perforce tasks | jakarta.apache.org/oro/ |
junit.jar | junit tasks | www.junit.org |
stylebook.jar | stylebook task | CVS repository of xml.apache.org |
testlet.jar | test task | java.apache.org/framework |
antlr.jar | antlr task | www.antlr.org |
bsf.jar | script task | oss.software.ibm.com/developerworks/projects/bsf |
netrexx.jar | netrexx task | www2.hursley.ibm.com/netrexx |
rhino.jar | javascript with script task | www.mozilla.org |
jpython.jar | python with script task | www.jpython.org |
netcomponents.jar | ftp and telnet tasks | www.savarese.org/oro/downloads |
Copyright © 2000,2001 Apache Software Foundation. All rights Reserved.