Difference between revisions of "User:Minooz/Ant"

From CDOT Wiki
Jump to: navigation, search
(Tutorials)
Line 8: Line 8:
 
* [http://individual.utoronto.ca/kia/ Eclipse based Tutorial ]
 
* [http://individual.utoronto.ca/kia/ Eclipse based Tutorial ]
 
* Notes from Joran Anastasiade tutorial
 
* Notes from Joran Anastasiade tutorial
 +
: 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.

Revision as of 10:02, 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.