| AW: Order of targets without depends? | AW: Order of targets without depends? 2003-03-21 - By Jan.Materne@(protected)
create a target for the whole project.
<project default="all"> <target name="one"> ... </target> <target name="two"> ... </target> <target name="three"> ... </target>
<target name="all" depends="one,two,three"/> </project>
So you can call them one by one or via "all".
Jan Mat?rne
> -----Urspr?ngliche Nachricht----- > Von: Stephan Niedermeier [mailto:s.niedermeier@(protected)] > Gesendet am: Freitag, 21. M?rz 2003 09:46 > An: user@(protected) > Betreff: Order of targets without depends? > > Hello, > > is it possible to set the order for the whole project in which targets > should be executed without the attribute "depends"? > > For example: > <order name="target1, target3, target2" /> > > I've got the problem, that I would like to call the targets > at once and > therefore the depends should not be executed. > > Thank you. > > Regards > Stephan Niedermeier > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: user-unsubscribe@(protected) > For additional commands, e-mail: user-help@(protected) >
|
|
 |