In ant if want to execute more than one target, we can do it like this,
ant target1 target2 target3
Other way could be, create target4 like
<target name="target4" depends="target1,target2,target3" />
but the problem is, one of my target definition is:
<target name="buildApp" depends="init,copy-all-requiredfiles-local,wait-to-merge,compile,createWAR,deployAll"/>
and if i want to execute buildApp then it will run all associated targets too, as obvious. Is it possible to execute the buildApp target without executing deployAll target?