跳转到内容

Apache Ant:修订间差异

维基百科,自由的百科全书
删除的内容 添加的内容
Xqbot留言 | 贡献
r2.7.3) (机器人添加:he:Apache Ant;源码清理
第48行: 第48行:
*[[Make]]
*[[Make]]


==外部链接==
== 外部链接 ==
*[http://ant.apache.org/ Official website of Apache Ant]
*[http://ant.apache.org/ Official website of Apache Ant]
*[http://wiki.apache.org/ant/FrontPage Apache Ant wiki]
*[http://wiki.apache.org/ant/FrontPage Apache Ant wiki]
第67行: 第67行:
[[Category:阿帕奇]]
[[Category:阿帕奇]]
[[Category:編譯工具]]
[[Category:編譯工具]]

[[ar:أباتشي أنت]]
[[ar:أباتشي أنت]]
[[ca:Apache Ant]]
[[ca:Apache Ant]]
第75行: 第76行:
[[es:Apache Ant]]
[[es:Apache Ant]]
[[fr:Apache Ant]]
[[fr:Apache Ant]]
[[he:Apache Ant]]
[[hu:Apache Ant]]
[[hu:Apache Ant]]
[[it:Apache Ant]]
[[it:Apache Ant]]

2012年9月16日 (日) 02:21的版本

Apache Ant (Another Neat Tool)
Apache Ant Logo
開發者Apache Software Foundation
当前版本1.8.2(2010年12月27日 (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>

可攜性

限制

参见

外部链接