3
想象一下從build.xml文件中的代碼:如何多次執行一個螞蟻任務?
<project name="test project">
<target name="first">
<echo>first</echo>
</target>
<target name="second" depends="first">
<echo>second</echo>
</target>
<target name="third" depends="first,second">
<echo>third</echo>
</target>
</project>
什麼我需要做的,這樣,當我運行:
ant third
我會收到以下輸出:
first,first,second,third
換句話說,我希望每個依賴運行,而不管它是否已經運行過。