|
About:
Ant is a Java based build tool, similar to make,
but with better support for the cross platform
issues involved with developing Java applications.
Ant is the build tool of choice for all Java
projects at Apache and many other Open Source Java
projects.
Release focus: Major bugfixes
Changes:
Among many minor bugfixes this release includes serious improvements of the wrapper scripts which should now support Cygwin and the handling of user-defined tasks that get used in child build processes. It also ships with the latest version of Xerces-J and includes a PDF version of Appendix E of the Ant book.
Author:
Ant development team <user (at) ant (dot) apache (dot) org>
[contact developer]
Homepage:
http://ant.apache.org/
Tar/GZ:
http://ant.apache.org/bindownload.cgi
Tar/BZ2:
http://ant.apache.org/bindownload.cgi
Zip:
http://ant.apache.org/bindownload.cgi
Changelog:
http://www.apache.org/dist/ant/
Debian package:
http://packages.debian.org/unstable/devel/ant
CVS tree (cvsweb):
http://svn.apache.org/viewvc/ant/core/
Bug tracker:
http://issues.apache.org/bugzilla/
Mailing list archive:
http://marc.theaimsgroup.com/?l=ant-user&r=1&w=2
Trove categories:
[change]
Dependencies:
[change]
No dependencies filed
|
|
» Rating:
8.53/10.00
(Rank 272)
» Vitality: 0.58% (Rank 486)
» Popularity: 9.02% (Rank 274)

(click to enlarge graphs)
Record hits: 61,956
URL hits: 60,820
Subscribers: 251
|
|
Branches
Releases
|
Version
|
Focus
|
Date
|
|
1.7.1
|
Major bugfixes |
09-Jul-2008 17:30 |
|
1.7.0
|
Major feature enhancements |
20-Dec-2006 12:17 |
|
1.6.5
|
Minor bugfixes |
03-Jun-2005 10:32 |
|
1.6.4
|
Minor bugfixes |
23-May-2005 05:51 |
|
1.6.3
|
Minor bugfixes |
28-Apr-2005 17:34 |
|
1.6.2
|
Minor feature enhancements |
16-Jul-2004 18:28 |
|
1.6.1
|
Minor bugfixes |
17-Feb-2004 01:59 |
|
1.6.0
|
Major feature enhancements |
19-Dec-2003 12:37 |
|
1.5.4
|
Minor bugfixes |
13-Aug-2003 08:02 |
|
1.5.3
|
Major bugfixes |
09-Apr-2003 05:49 |
Articles referencing this project
Comments
[»]
Arguably the Best Build Tool Ever
by Matt Rosenberger - Jul 11th 2004 21:11:34
I never liked the syntax of GNU makefiles. I used a shell script to build
C++ projects from scratch instead of `make`. When I was hired as a Java
developer, one of my tasks was to get familiar with the build process since
I would be responsible for making any changes to it. So I had to learn
about some tool called Ant, which was described to me as `make` for Java.
Well I wasn't too thrilled with this idea since I hated `make`. However,
within 5 minutes of sitting down with an Ant book and reading sample Ant
scripts, I was hooked.
Ant is the killer Java utility. A must-have for any Java project. It
takes a few minutes to create a basic build process using simple XML
scripting. Ant shines with it's file set support so you can use wildcards
to include or exclude certain files during a process. There are an
abundant amount of tasks that can be used in Ant, ranging from FTP, Telnet,
E-mail, CVS to JSP, EJB, RMI, and J2EE. Many Java utilities suitable for a
build process such as JUnit and JProbe can be used within Ant.
Ant has really made my job enjoyable!
[reply]
[top]
|