If I have three targets, one all
, one compile
and one jsps
, how would I make all
depend on the other two?
Would it be:
<target name="all" depends="compile,jsps">
...or would it be:
<target name="all" depends="compile","jsps">
Or maybe something even different?
I tried searching for example ant scripts to base it off of, but I couldn't find one with multiple depends.
question from:
https://stackoverflow.com/questions/2888725/multiple-depends-in-ant-task 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…