Re: Developing in Java with ANT

2009-03-27 Thread David Nemer
once again, Cheers, -- David Nemer Sent from: Kaiserslautern RP Germany. On Wed, Mar 18, 2009 at 8:54 PM, Matt Benson wrote: > > Here's one: http://tinyurl.com/jz76f > > -Matt > > --- On Wed, 3/18/09, David Nemer wrote: > > > From: David Nemer > > Subject

Re: Developing in Java with ANT

2009-03-18 Thread Matt Benson
Here's one: http://tinyurl.com/jz76f -Matt --- On Wed, 3/18/09, David Nemer wrote: > From: David Nemer > Subject: Re: Developing in Java with ANT > To: "Ant Users List" > Date: Wednesday, March 18, 2009, 2:31 PM > Do you guys by any chance know any > open

Re: Developing in Java with ANT

2009-03-18 Thread David Nemer
.8.0. >> >> -Matt >> >> --- On Wed, 3/18/09, David Nemer wrote: >> >> > From: David Nemer >> > Subject: Re: Developing in Java with ANT >> > To: "Ant Users List" >> > Date: Wednesday, March 18, 2009, 12:38 P

Re: Developing in Java with ANT

2009-03-18 Thread David Nemer
factoring. > We'll keep it in mind for 1.8.0. > > -Matt > > --- On Wed, 3/18/09, David Nemer wrote: > > > From: David Nemer > > Subject: Re: Developing in Java with ANT > > To: "Ant Users List" > > Date: Wednesday, March 18, 2009, 12:38 PM >

Re: Developing in Java with ANT

2009-03-18 Thread Matt Benson
You need to include ant-launcher.jar to get the AntMain interface. This probably should be in the core Ant jar but would take a little refactoring. We'll keep it in mind for 1.8.0. -Matt --- On Wed, 3/18/09, David Nemer wrote: > From: David Nemer > Subject: Re: Developing i

Re: Developing in Java with ANT

2009-03-18 Thread David Nemer
Hey, everyone, thank you for you help. I stick with the solution from Gawor ( http://www.ibm.com/developerworks/websphere/library/techarticles/0502_gawor/0502_gawor.html ): File buildFile = new File("build.xml"); Project p = new Project(); p.setUserProperty("ant.file", buildFile.getAbsolutePath()

RE: Developing in Java with ANT

2009-03-17 Thread Felix Dorner
Whoops > Maybe you look for something like this: http://www.ibm.com/developerworks/websphere/library/techarticles/0502_gawor/0502_gawor.html Felix - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional comman

RE: Developing in Java with ANT

2009-03-17 Thread Felix Dorner
Maybe you look for something like this: > -Mensaje original- > De: David Nemer [mailto:davidne...@gmail.com] > Enviado el: Monday, March 16, 2009 10:26 PM > Para: user > Asunto: Re: Developing in Java with ANT > > Hello David and Martin, > > Thank you f

AW: Developing in Java with ANT

2009-03-17 Thread Knuplesch, Juergen
Nachricht- Von: David Nemer [mailto:davidne...@gmail.com] Gesendet: Montag, 16. März 2009 22:04 An: user@ant.apache.org Betreff: Developing in Java with ANT Hello Everyone, I'm really new to Ant, and I need some help, my task is to code in JAVA a program to checkout a version of a open so

RE: Developing in Java with ANT

2009-03-16 Thread Martin Gainty
s message serves for information purposes only and shall not have any legally binding effect. Given that e-mails can easily be subject to manipulation, we can not accept any liability for the content provided. > Date: Mon, 16 Mar 2009 22:26:28 +0100 > Subject: Re: Developing in Jav

Re: Developing in Java with ANT

2009-03-16 Thread David Nemer
accept any liability for the content provided. > > > > > > > > Date: Mon, 16 Mar 2009 22:03:43 +0100 > > Subject: Developing in Java with ANT > > From: davidne...@gmail.com > > To: user@ant.apache.org > > > > > Hello Everyone, > > > >

Re: Developing in Java with ANT

2009-03-16 Thread David Weintraub
On most systems, there is a shell script that launches Ant for you, so you can launch it from the command line: $ ant You can also specify a target: $ ant jar And, if run this: $ ant -projecthelp it may even print out all the targets your build.xml file contains. You need to install Ant, and

Developing in Java with ANT

2009-03-16 Thread David Nemer
Hello Everyone, I'm really new to Ant, and I need some help, my task is to code in JAVA a program to checkout a version of a open source project, compile it and run the test script which is in ANT. I'm working on the Ant-Doxygen Project (but it could be any project). http://sourceforge.net/projec