Hi, > -----Message d'origine----- > De : Conor MacNeill [mailto:[EMAIL PROTECTED] > Envoy� : dimanche 23 juillet 2000 16:49 > � : [EMAIL PROTECTED] > Objet : RE: [RFE] Incremental mode for Ant > > <snip> > I see that someone has proposed a GUI which looks kinda nice. It currently > seems geared to building ant files rather than running them. I am also not > sure if this code will be contributed as it seems to depend on a library, > etc, etc.
I'm working on AntHill. AntHill will be available under GPL. AntHill is currently able to build a selected target or the default target. Messages (output) is directed to a specific JTextArea. I'm encountering problem to stop the build process if ant started some exec tasks (runtime.exec()). I made the choice to run Ant from AntHill (in the same VM and an other Thread). If I start a long running target like Javadoc and I want to interrupt it, I use theThread.interrupt(); It succesfully interrupts the thread but not the command (Process) started by the Javadoc task. I didn't find any way to get all the processes started by ant during the build. So I'm not able to interrupt it :( > Conor > > > > -----Original Message----- > > From: Peter Donald [mailto:[EMAIL PROTECTED] > > Sent: Sunday, 23 July 2000 0:51 > > To: [EMAIL PROTECTED] > > Subject: [RFE] Incremental mode for Ant > > > > > > Hi, > > > > Does anyone else wnat an incremental mode for ant ? Basically what that > > means is that you go through one run. When you get to end of run It will > > prompt you - Enter to recompile last target, Esc to exit. This > avoids some > > of overhead of starting a VM and is quite a nice feature generally ... I > > would also like a system where it was possible that I could > type in a new > > target to stding to get it executed when in this idle mode .. > > > > Cheers, > > > > Pete > > > > *------------------------------------------------------* > > | "Nearly all men can stand adversity, but if you want | > > | to test a man's character, give him power." | > > | -Abraham Lincoln | > > *------------------------------------------------------* > > >
