Re: Recycle an Ant task

2012-10-02 Thread Rob Seegel
Thanks for sharing this Jose. I had a fairly complex build that called other project builds and I needed something like this as well at one time. I think it's worth reviewing it now and seeing if something like one of these two options might be the better way to go. The way I chose is pretty em

Re: Recycle an Ant task

2012-09-28 Thread Jose Rojas
Stefan, thank you for two excellent solutions. I actually implemented the reference solution yesterday. What I discovered would be interesting for others looking for a solution like this: * Project.addReference() is what I used to create and set a new reference at the highest Project level. * Yo

Re: Recycle an Ant task

2012-09-27 Thread Stefan Bodewig
On 2012-09-26, Jose Rojas wrote: > I would like to create a custom ant task that caches some results from an > operation and saves it for use in future executions. My simple method of > doing this is using a 'static' member. This would work great for me as the > operations would be appropriate t