标签: java ant build wait
是否可以配置ANT暂停构建过程,直到创建文件(具有相对超时)?
答案 0 :(得分:17)
<waitfor maxwait="30" maxwaitunit="second"> <available file="myfile"/> </waitfor>
请参阅http://ant.apache.org/manual/Tasks/waitfor.html
答案 1 :(得分:1)
使用waitfor任务。