Re: dev-list - Calling Ant within a servlet/webapp

2006-08-18 Thread Marc Farrow
Because the build files are not maintained by us. We just use them. On 8/17/06, Kev Jackson <[EMAIL PROTECTED]> wrote: On 16 Aug 2006, at 19:26, Marc Farrow wrote: > I have some servlet and I am trying to call an Ant script within > the class > to compile a "project". All of the references

Re: dev-list - Calling Ant within a servlet/webapp

2006-08-17 Thread Kev Jackson
On 16 Aug 2006, at 19:26, Marc Farrow wrote: I have some servlet and I am trying to call an Ant script within the class to compile a "project". All of the references in the build script are not relative, therefore some of the classpath references are not correct. I know I can change the

Re: dev-list - Calling Ant within a servlet/webapp

2006-08-17 Thread Marc Farrow
Anyone have any clues about adding items to the general classpath? What about even just adding classpath entries without a target (such as ) On 8/16/06, Marc Farrow <[EMAIL PROTECTED]> wrote: I checked out the link. Anthill is just "spawning" a process to run the Ant Executable for the spec

Re: dev-list - Calling Ant within a servlet/webapp

2006-08-16 Thread Marc Farrow
I checked out the link. Anthill is just "spawning" a process to run the Ant Executable for the specified platform. So they are not programmatically using ant as I want to do. I want my solution to be a Java solution. Anyone else have any other ideas? Thank you, Marc On 8/16/06, Marc Farrow

Re: dev-list - Calling Ant within a servlet/webapp

2006-08-16 Thread Marc Farrow
Thanks for the tip Tom. I will definitely check it out. On 8/16/06, Tom Cunningham <[EMAIL PROTECTED]> wrote: Have you taken a look at Anthill ( http://www.urbancode.com/projects/anthill/default.jsp)? There's an open source version which you can hack up, but it seems like it does the same t

Re: dev-list - Calling Ant within a servlet/webapp

2006-08-16 Thread Tom Cunningham
Have you taken a look at Anthill (http://www.urbancode.com/projects/anthill/default.jsp)? There's an open source version which you can hack up, but it seems like it does the same thing that you are trying to do here (kick off ant from the web). If you do need to do this, you might want t

dev-list - Calling Ant within a servlet/webapp

2006-08-16 Thread Marc Farrow
I have some servlet and I am trying to call an Ant script within the class to compile a "project". All of the references in the build script are not relative, therefore some of the classpath references are not correct. I know I can change the properties, etc to fix this. However, due to the nat