<?xml version="1.0" encoding="UTF-8"?>
<project name="cvs package" basedir="." default="main">
<property file="project.properties"/>
<target name="main">
<ant antfile="${dir}/U1.xml" target="init.package.main"/>
<ant antfile="U1.xml" dir="${dir}" target="init.package.main"/>
</target>
</project>
如果<ant antfile="${dir}/U1.xml" target="init.package.main"/>
不加dir表示U1.xml相当于U.xml中的一个target,U1.xml运行时引进的属性文件中的Key
是取U.xml中的引进的<property file="project.properties"/>
<ant antfile="U1.xml" dir="${dir}" target="init.package.main"/>
加dir表示U1.xml是一个独立的ant脚本,运行时U1.xml运行时引进的资源文件中的Key是取U1.xml中本身的.如果U1.xml中的属性文件的key与U.xml重复,取U中的属性文件.
注:
<antcall target=""></antcall>表示ant脚本中本身target的调用