How do I share data between custom Ant tasks?

2010-10-25 Thread Kevin Connor Arpe
Anters, I wrote a StackOverflow.com post, but was unable to get help on this issue. I realise this is not a simple issue. To encourage others to take a look, I am willing to contribute a patch if someone can explain the bug (if it is one). Since I have been debugging Ant code for the last two we

Re: How do I share data between custom Ant tasks?

2010-10-25 Thread Jeffrey E Care
Kevin Connor Arpe wrote on 10/25/2010 12:19:06 PM: > I wrote a StackOverflow.com post, but was unable to get help on this issue. > I realise this is not a simple issue. To encourage others to take a > look, I am willing to contribute a patch if someone can explain the > bug (if it is one). > >

Re: How do I share data between custom Ant tasks?

2010-10-25 Thread Dominique Devienne
On Mon, Oct 25, 2010 at 11:19 AM, Kevin Connor Arpe wrote: > I wrote a StackOverflow.com post, but was unable to get help on this issue. SO is great, but the official user and dev lists is the best place to ask Ant questions. > > >             description="test the custom task" >   > >      

Re: Using IVY programatically

2010-10-25 Thread shacoshe
it was weird that i am passing to "PomModuleDescriptorParser.getInstance().parseDescriptor" a new IVYSettings so i passed the instance i created before , cause in the logger i see that ,ivy is trying to use file inside IVY jar :: loading settings :: url = jar:file:/D:/programming/eclipse_pro

Re: How do I share data between custom Ant tasks?

2010-10-25 Thread mattf
I think there are several problems here, but the bottom like is: be upfront about sharing data, hidden shared data may not give the user the tool they expect. In the following: public Integer get_bigdata() { if (_static_bigdata == null) { log("alloc"); // from ant Task class