Hi,
when working with custom tasks, but also in general,
I frequently find myself doing things like this:
<target name="init"/>
<target name="t1" depends="init"/>
<target name="t2" depends="init,t1"/>
<target name="t3" depends="init,t1"/>
<target name="t4" depends="init"/>
<target name="t5" depends="init,t1,t3"/>
...
Is it possible to simplify this? A "magic" target?
More important, can I force other users to depend
on the "init" target?
Regards,
Jochen
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>