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.
| Tags | Software Development Build Tools |
|---|---|
| Licenses | Apache Apache 2.0 |
| Operating Systems | OS Independent |
| Implementation | Java |
Recent releases


Release Notes: Zip64 extensions are now disabled by default. Loading of external dependencies was fixed in JUnit tasks. JUnitreport default stylesheets are now compatible with JDK 1.7. Upgrading to jsch 0.1.50 is recommended for users of the SSH/SCP tasks under Java 1.7. "if" and "unless" XML namespaces were introducted, making it possible to put conditions on all tasks and nested elements. Bugs were fixed.


Release Notes: This is the first Ant release that requires at least Java 1.5. It has support for @Ignore annotation and a requirement of JUnit 4.11. The zip, bzip2, and tar are improved. The Perforce Ant tasks have been removed; users of these tasks can use the tasks supplied by Perforce Inc. instead, which contain more functionality and connect natively to the Perforce servers. There are numerous bugfixes and improvements as documented in Bugzilla and in the release notes.


Release Notes: This is a security bugfix release that fixes a potential denial of service attack vector in the bzip2 task.


Release Notes: Several small fixes and improvements across many tasks.


Release Notes: Performance improvements in directory scanning. The XSLT task honors the classpath again (bugrep 49271). The distinction between core tasks and optional tasks is abolished. Numerous bugfixes and improvements as documented in Bugzilla and in WHATSNEW.
Recent comments
30 Mar 2012 06:55
Really good Java tool
11 Jul 2004 21:11
Arguably the Best Build Tool Ever
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!