2003-03-31 14:09:18 +02:00
|
|
|
Apache Ant, a Java-based build tool, conceptually similar to make.
|
Add Ant-1.3, a Java based build tool, from Jakarta Project.
Among four submissions, this commit based on the port sent by
Ernst de Haan <ernst@jollem.com> at ports/24291.
PR: 21435, 23368, 24291
Submitted by: Leo Kim <leo@florida.sarang.net>,
Dave Glowacki <dglo@ssec.wisc.edu>,
Sean Blakey <sean@beastie.bellevue.virtualtek.com>,
Ernst de Haan <ernst@jollem.com>
Also thanks to: Palle Girgensohn <girgen@partitur.se>,
Richard Stockley <rws@procopia.demon.co.uk>,
Kees Jan Koster <kjkoster@kjkoster.org>
2001-04-03 05:19:56 +02:00
|
|
|
|
|
|
|
Ant uses XML build files that defines a set of targets. Each target
|
|
|
|
has dependencies (other targets) and contains a set of tasks to
|
|
|
|
perform.
|
|
|
|
|
|
|
|
There are tasks for various things, like compiling ("javac"),
|
|
|
|
copying ("copy"), deleting ("delete"), executing other programs
|
|
|
|
("java", "exec", "execon", etc.), stylesheet transformations
|
|
|
|
("style") and so on.
|
|
|
|
|
2003-03-31 14:09:18 +02:00
|
|
|
WWW: http://ant.apache.org/
|