Java Mailing List Archive

http://www.ant-tasks.com/

Home » Ant Users List »

Depends="init" problem

Guy Catz

2008-06-16

Replies: Find Java Web Hosting

Author LoginPost Reply
I have several targets, all depends on init -

<target name="a" depends="init">
...

<target name="b" depends="init">
...

<target name="c" depends="init">
...

and of course <target name="init">
...


Now, I also have a target which call a, then b and then c.
But when I run that ANT, the output is something like this -
running <init> -   successful
running <a> -     successful
running <init> -   successful
running <b> -     successful
running <init> -   successful
running <c> -     successful

which means that Init ran 3 times!! instead of only once.

I do I make it to run only once?

Please advise.

Thanks,
  Guy.
©2008 ant-tasks.com - Jax Systems, LLC, U.S.A.