发布网友 发布时间:2022-04-26 03:01
共1个回答
热心网友 时间:2022-06-20 07:52
下面这个target由myTarget.run这个property控制
<target name="myTarget" depends="myTarget.check" if="myTarget.run">
<echo>Files foo.txt and bar.txt are present.</echo>
</target>
myTarget.check这个property的值也可以由下面的逻辑产生
<target name="myTarget.check">
<condition property="myTarget.run">
<and>
<available file="foo.txt"/>
<available file="bar.txt"/>
</and>
</condition>
</target>
参考http://ant.apache.org/manual/ , targets描述