Packaging ant scripts into a jar

2013-01-17 Thread Jose Rojas
Hello, I have an ant build process that I would like bundle into a jar. Is it possible for ant to run a build.xml found within a jar file instead of a file within the local file system? I know I can script Ant within a custom Java program to possibly handle some of this, but I also have special

Re: Recycle an Ant task

2012-09-28 Thread Jose Rojas
reloaded on a subsequent execution. Thanks again! On Thu, Sep 27, 2012 at 9:08 PM, Stefan Bodewig wrote: > 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.

Recycle an Ant task

2012-09-26 Thread Jose Rojas
Hello, This may be a developer mailing list question due to its specifics, but hopefully someone can off some help. I'm using the Ant API within a Java application. 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