Re: BUG maybe?

2001-08-22 Thread Don Taylor
Most of us consider this a feature! :) -- Don --- Ronny_Næss <[EMAIL PROTECTED]> wrote: > Hi. > > I think I might have found a bug. > > I have made several targets in our build.xml file and several targets > that > depends on other targets. > > The problem seems to be that no target can be

RE: BUG maybe?

2001-08-22 Thread Will Dyke
Targets never get called twice (see Targets under Using Ant at http://jakarta.apache.org/ant/manual/) You can probably use to call a target multiple times (i.e. do this at the end of the war target, then at the end of the ear target etc.) Have a look at the ant docs for antcall. Regards, Will

Re: BUG maybe?

2001-08-22 Thread Peter Donald
Not a bug - a feature. Depends lists dependencies and once it has been satisfied there is no need to run dependency again. It is designed to work that way. Personally I would rework your build system to not have multiple builds sharing same directory. Another option would be to use antcall whi