Apache Ant
外觀
開發者 | Apache Software Foundation |
---|---|
當前版本 | 1.8.2(2010年12月27日 | )
原始碼庫 | |
程式語言 | Java |
作業系統 | Cross-platform |
類型 | 組建自動化 |
許可協議 | Apache License 2.0 |
網站 | http://ant.apache.org |
Apache Ant,是一個將軟件編譯、測試、部署等步驟聯繫在一起加以自動化的一個工具,大多用於Java環境中的軟件開發。由Apache軟件基金會所提供。默認情況下,XML文件名為build.xml 。
歷史
build.xml 範例
<?xml version="1.0" ?>
<project name="Hello World" default="execute">
<target name="init">
<mkdir dir="build/classes"/>
<mkdir dir="dist"/>
</target>
<target name="compile" depends="init">
<javac srcdir="src" destdir="build/classes"/>
</target>
<target name="compress" depends="compile">
<jar destfile="dist/HelloWorld.jar" basedir="build/classes" />
</target>
<target name="execute" depends="compile">
<java classname="HelloWorld" classpath="build/classes"/>
</target>
</project>
可攜性
限制
參見
外部連結
- Official website of Apache Ant
- Apache Ant wiki
- WinAnt - Windows installer for Apache Ant
- Introduction to Ant (slide show)
- Linguine Maps visualization library will automatically produce easy to read diagrams from Ant build files.
- antro - a profiler for Ant scripts
- Wiki Book on learning Apache Ant
- Ant tutorial
- Ant Automation, a good handy example of automation with Ant.
- A simple Windows GUI for running Ant.