1
我有一個目標,最後調用它自己在一個特定的條件,但作爲值已設置它進入無限循環。有什麼方法可以重置addproperty值。如何清除螞蟻輸入任務中的addproperty值
我有一個目標,最後調用它自己在一個特定的條件,但作爲值已設置它進入無限循環。有什麼方法可以重置addproperty值。如何清除螞蟻輸入任務中的addproperty值
你可以使用ant-contrib的variable任務:
<var name="your.property" unset="true"/>
<input message="your message to the user" addproperty="your.property"/>
如果你正在使用Ant 1.8或更高版本,Ant的內置<local>
任務提供局部範圍的屬性:
<local name="user.input"/>
<input message="Prompt the user" addproperty="user.input"/>