Difference between revisions of "User:Minooz/Ant"

From CDOT Wiki
Jump to: navigation, search
(Tutorials)
(Tutorials)
Line 12: Line 12:
 
:Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks get executed.
 
:Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks get executed.
 
: Installing Ant :
 
: Installing Ant :
:: Add the bin directory to your path
+
:: Add the bin directory to your path. Set the ANT_HOME environment variable to the directory where you installed Ant. Assume ant is installed in c:\ant\. The following sets up the environment:
::Set the ANT_HOME environment variable to the directory where you installed Ant. Assume ant is installed in c:\ant\. The following sets up the environment:
 
 
::set ANT_HOME=c:\ant
 
::set ANT_HOME=c:\ant
 
::set JAVA_HOME=...
 
::set JAVA_HOME=...
 
::set PATH=%PATH%;%ANT_HOME%\bin
 
::set PATH=%PATH%;%ANT_HOME%\bin

Revision as of 10:03, 14 October 2010

ANT

Apache Website

Manual
Index of Manual/Tasks
JUnit Task

Tutorials

Ant is a Java-based build tool
Instead of a model where it is extended with shell-based commands, ant is extended using Java classes
Instead of writing shell commands, the configuration files are XML-based, calling out a target tree where various tasks get executed.
Installing Ant :
Add the bin directory to your path. Set the ANT_HOME environment variable to the directory where you installed Ant. Assume ant is installed in c:\ant\. The following sets up the environment:
set ANT_HOME=c:\ant
set JAVA_HOME=...
set PATH=%PATH%;%ANT_HOME%\bin