Hello ,
I have the following example:
<target name="Test">
<antcall target="init" />
<antcall target="apply change" /> (In background)
<antcall target="validate" />
<antcall target="distribution" />
--WAIT for all the parallel to finish
</target>
I want to run the <antcall target="apply change"/>
in the background and in parallel to contiure running
target="validate" and then target="distribution" />
and waiting until the target="apply change" and target="validate" and target="distribution" are finishing.
I have the following example:
<target name="Test">
<antcall target="init" />
<antcall target="apply change" /> (In background)
<antcall target="validate" />
<antcall target="distribution" />
--WAIT for all the parallel to finish
</target>
I want to run the <antcall target="apply change"/>
in the background and in parallel to contiure running
target="validate" and then target="distribution" />
and waiting until the target="apply change" and target="validate" and target="distribution" are finishing.