|
|
Apache Ant is a software tool for automating software build processes. It is similar to make but is written in the Java language, requires the Java platform, and is best suited to building Java projects.
The most immediately noticeable difference between Ant and make is that Ant uses XML to describe the build process and its dependencies, whereas make has its Makefile format. By default the XML file is named build.xml.
created by syam1224 on 2008-03-26 23:08:09
|
|
|
|
Apache Ant from Wikipedia

Ant was conceived by James Duncan Davidson while turning a product from Sun into open source. That product, Sun's reference JSP/Servlet engine, later became Apache Tomcat
http://en.wikipedia.org/wiki/Apache_Ant
created by syam1224 on 2008-03-26 23:14:17
|
|
Apache Ant Official Site

Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles.
Why another build tool when there is already make, gnumake, nmake, jam, and others? Because all those tools have limitations that Ant's original author couldn't live with when developing software across multiple platforms.
http://ant.apache.org/
created by syam1224 on 2008-03-26 23:10:24
|
|
Official Apache Ant FAQ

Ant is a Java-based build tool. In theory, it is kind of like Make, without Make's wrinkles and with the full portability of pure Java code.
http://ant.apache.org/faq.html
created by syam1224 on 2008-03-27 00:26:34
|
|
Official Apache Ant Manual

Introduction
Installing Ant
Using Ant
Running Ant
Ant Tasks
Concepts and Types
Loggers & Listeners
Editor/IDE Integration
Developing with Ant
Tutorials
Ant API
License
Feedback and Troubleshooting
http://ant.apache.org/manual/index.html
created by syam1224 on 2008-03-27 00:28:34
|
|
|