RE: Could Ant build scripts be compiled?

2003-11-25 Thread Jan . Materne
Oh yes - my 4th reason :-) Too less benefit for to much fun (while writing) ... @scott: sorry no valuable gems found ... Jan > -Original Message- > From: Donald Strong [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 26, 2003 4:37 AM > To: Ant Users List > Subject: RE: Could Ant bu

RE: ant vs gmake - a simple question

2003-11-25 Thread Jan . Materne
> (1). in case of gmake/make, you have Makefile in > every sub-directory from the root (top) level. So, > when there is a build failure, you can go to a leaf > dir, where the trouble happened. Try to do a local > gmake in the leaf dir and that will give some clues. > > How do we deal with it ant?

RE: Ant 1.6 + JUnit (where's ant/launch/Locator)?

2003-11-25 Thread Jan . Materne
ANTHOME\lib\ant-launcher.jar If you start Ant 1.6 from command line, the wrapper script will (more or less) do a java -jar ant-launcher.jar oata.launch.Launcher That class loads all jars in the lib directory and in %user.home%/.ant/lib After that Ant starts. If you start JUnitSwingRunner, ma

Re: Could Ant build scripts be compiled?

2003-11-25 Thread Jacob Kjome
Hi Peter, At 06:43 PM 11/25/2003 +, you wrote: - use instead of I think I've found a case where I can't replace my 's with . Currently, the target I am calling via has dependencies. If I use to make the call, how do I get the other targets to run. Everything has to happen in the ,

RE: Could Ant build scripts be compiled?

2003-11-25 Thread Donald Strong
Thanks Conner, I wanted to make this point but didn't want to contradict Scott twice in a row. Sorry Scott. ;^) Consider a non trivial build process that takes, say, 1 hour to do clean build. This is driven by a 3000 line build.xml file. Unless I am mistaken, Ant builds an internal data structu

ant vs gmake - a simple question

2003-11-25 Thread kaladharan dharan
Folks, (1). in case of gmake/make, you have Makefile in every sub-directory from the root (top) level. So, when there is a build failure, you can go to a leaf dir, where the trouble happened. Try to do a local gmake in the leaf dir and that will give some clues. How do we deal with it ant? Would

Re: run junit tests in a certain order

2003-11-25 Thread Martin Gainty
Derive your own class from File code the listFile() method ordering the way you see fit.. -Martin - Original Message - From: "J. Xue" <[EMAIL PROTECTED]> To: "Ant Users List" <[EMAIL PROTECTED]> Sent: Tuesday, November 25, 2003 7:49 PM Subject: run junit tests in a certain order > > I'm