Apache Ant:修订间差异
外观
删除的内容 添加的内容
小 r2.7.3) (机器人添加:he:Apache Ant;源码清理 |
无编辑摘要 |
||
第15行: | 第15行: | ||
| website = http://ant.apache.org |
| website = http://ant.apache.org |
||
}} |
}} |
||
'''Apache Ant''',是一个将[[软件]][[编译]]、[[单元测试|测试]]、[[软件部署|部署]]等步骤联系在一起加以自动化的一个[[软件开发工具|工具]],大多用于[[Java]]环境中的[[软件开发]]。由[[Apache软件基金会]]所提供。默認情況下 |
'''Apache Ant''',是一个将[[软件]][[编译]]、[[单元测试|测试]]、[[软件部署|部署]]等步骤联系在一起加以自动化的一个[[软件开发工具|工具]],大多用于[[Java]]环境中的[[软件开发]]。由[[Apache软件基金会]]所提供。默認情況下,它的buildfile(XML文件)名為build.xml 。 |
||
== 歷史 == |
== 歷史 == |
2012年11月30日 (五) 06:06的版本
開發者 | Apache Software Foundation |
---|---|
当前版本 | 1.8.2(2010年12月27日 | )
源代码库 | |
编程语言 | Java |
操作系统 | Cross-platform |
类型 | 組建自動化 |
许可协议 | Apache License 2.0 |
网站 | http://ant.apache.org |
Apache Ant,是一个将软件编译、测试、部署等步骤联系在一起加以自动化的一个工具,大多用于Java环境中的软件开发。由Apache软件基金会所提供。默認情況下,它的buildfile(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.