Apache Ant
Apache Ant,是一個將軟件編譯、測試、部署等步驟聯繫在一起加以自動化的一個工具,大多用於Java環境中的軟件開發。由Apache軟件基金會所提供。默認情況下,它的buildfile(XML文件)名為build.xml。每一個buildfile含有一個<project>和至少一個預設的<target>,這些targets包含許多task elements。每一個task element有一個用來被參考的id,此id必須是唯一的。
開發者 | Apache軟件基金會 |
---|---|
當前版本 |
|
源代碼庫 | |
編程語言 | Java |
操作系統 | 跨平臺 |
類型 | 組建自動化 |
許可協議 | Apache許可證 2.0 |
網站 | ant |
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>
參見
參考資料
- ^ [ANNOUNCE] Apache Ant 1.10.14 released. 2023年8月21日 [2023年12月19日] (英語).
外部連結
- 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.