Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running ANT task in parallel

Status
Not open for further replies.

blue404

Programmer
Apr 5, 2011
1
0
0
IL
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top