views:

82

answers:

2

is it possible to configure the ANT to pause the building process untill a file is created (with relative timeout)?

+1  A: 

Use the waitfor task.

scompt.com
+4  A: 
<waitfor maxwait="30" maxwaitunit="second">
    <available file="myfile"/>
</waitfor>

See http://ant.apache.org/manual/Tasks/waitfor.html

Chris Lercher