我有两个蚂蚁文件:
1) 主文件
<include file="otherFile.xml" as="otherFile"/> <target name="firstTarget"> <antcall target="otherFile.secondTarget"/> </target>
2) 实用程序文件
<target name="secondTarget">
<antcall target="thirdTarget"/>
</target>
<target name="thirdTarget">
<echo message="ok"/>
</target>
当我调用它时,firstTarget
它说它找不到thirdTarget
. 如果我改变secondTarget
这种方式:
<target name="secondTarget"> <antcall target="otherFile.thirdTarget"/> </target>
然后它工作。但是我不能直接使用 secondTarget 。因为第二个文件不知道前缀 otherFile