RE: Junit report for multiple projects

2011-06-20 Thread Echlin, Robert
Err - right - you are using ant , at least you are now - the original message said antcall. Is " -Original Message- > From: kasim ahmed [mailto:mail2ka...@googlemail.com] > Sent: Monday, June 20, 2011 11:01 AM > To: Ant Users List > Subject: Re: Junit report for multiple projects > > sorr

RE: Junit report for multiple projects

2011-06-20 Thread Echlin, Robert
Then try "Ant", instead of "Antcall". Rob > -Original Message- > From: kasim ahmed [mailto:mail2ka...@googlemail.com] > Sent: Monday, June 20, 2011 11:01 AM > To: Ant Users List > Subject: Re: Junit report for multiple projects > > sorry, junit-1,junit-2,junit-3 are in different project

Re: Junit report for multiple projects

2011-06-20 Thread kasim ahmed
sorry, junit-1,junit-2,junit-3 are in different project and each project is having build.xml. On Mon, Jun 20, 2011 at 4:21 PM, Echlin, Robert wrote: > You are running separate copies of ant for each of the junit tests. > Instead, run them all in the same Ant invocation, and make the "mainbu

RE: Programatic ANT: Export Build.xml

2011-06-20 Thread Echlin, Robert
Hi Darky, XSLT is a good tool for generating XML files. Try the free (GPL) version of Saxon, from saxonica. http://sourceforge.net/projects/saxon/files/ But for help on how to write XSLT, you will have to go to a different list. Saxon has lists, (and I should subscribe to one.) Rob > -Origina

RE: Junit report for multiple projects

2011-06-20 Thread Echlin, Robert
You are running separate copies of ant for each of the junit tests. Instead, run them all in the same Ant invocation, and make the "mainbuild" target depend on all of them. The above line replaces the first 4 nonblank lines (shown below) from your example. > > > > Rob > -O