Multiple depends in ant task
Posted
by glowcoder
on Stack Overflow
See other posts from Stack Overflow
or by glowcoder
Published on 2010-05-22T15:50:06Z
Indexed on
2010/05/22
15:50 UTC
Read the original article
Hit count: 254
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.
Thanks!
© Stack Overflow or respective owner