Currently I have one build file like
<target name="test1">
</target>
<target name="test2">
</target>
....
<target name="test" depends="test1,test2">
</target>
There is one problem, when run target "test1", ant always timeout(Confirm with Dev, ant is waiting for some back-end task completed in Runtime, this is correct)。
But based on that, the whole ant execution will be interruppted by the failure of test1, test2 will not be executed.
So question is is there any way to tell ant, for test1, you only to execute it, not to wait it completed, then you can go to test2 target directly.