Ant高级特性-模块化
?
Ant作为一种编程的辅助工具,可以看作与脚本一个级别的东西。写一个build.xml,用它来帮助你干各种小杂活,应该是一件很简单的事情。但是如果是一个很大的工程呢?如果你需要写很多的build.xml,那么与其他脚本语言一样,由于维护和代码重用的压力,你必须考虑到一个因素:模块化。到1.6版为止,Ant已经提供了很多Task,可以帮助实现Ant脚本的模块化。 1. Property<?xml version="1.0" ?><project name="testAnt" default="commonTarget" >?<target name="commonTarget">??<echo message="${test.param}"/>?</target>??<target name="callingTarget">??<antcall target="commonTarget">???<param name="test.param" value="Modulation" />??</antcall></target></project>
?输出结果如下所示:>ant callingTarget
<?xml version="1.0" ?><project name="testAnt" default="test" ><macrodef name="showModule"> <attribute name="v" default="NOT SET"/> <element name="some-tasks" optional="yes"/> <sequential> <echo>v is @{v}</echo> <some-tasks/> </sequential></macrodef><target name="test"> <showModule v="This is V"> <some-tasks><echo>this is a test</echo> </some-tasks> </showModule></target></project>运行结果:>ant?
<?xml version="1.0" ?><project><property name="project.name" value="Ant Modulazation" /><target name="commonTarget"><echo message="${test.param}" /></target> <macrodef name="showModule"> <attribute name="test.param" default="NOT SET"/> <sequential> <echo message="@{test.param}" /> </sequential></macrodef></project>?
<?xml version="1.0" ?><project name="testCommon" default="callingTarget"><import file="common.xml" /> <target name="callingTarget" depends="testMacro"> <antcall target="commonTarget"><param name="test.param" value="Modulation" /> </antcall></target> <target name="testMacro"> <showModule test.param="Modulation" /></target></project>
??
运行结果如下:>ant
运行结果 写道testMacro:??注意:在common.xml中,不能对project元素设置属性;另外,不要试图使用重名的property,或target以获取覆盖