Currently my project uses nearly 15 build.xml/build.properties file for separate subprojects.Each sub-project has build.xml with source codes scattered in 4 folders.As per my knowledge for creating the reports,the java files from test(not from src) folder should be compiled and then junit should work to generate report.For the time being I want to integrate only junit.I am new to ant scripting.Please help. -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2008 5:36 PM To: [email protected] Subject: AW: Need help in writing build.xml
> I recently joined ant users list.I dont know if this is the proper way to communicate with others? Yes it is. Welcome on the list. When answering please stay here so other could benefit from the discussion too. > I want to integrate some installables like junit, emma and javancss tools. I have no much idea on them.These are testing tools which will generate some reports. My question is if I want to integrate our current build with external tools ,how to proceed with? For JUnit there is an integration built in: <junit> for running and <junitreport> for generating browsable reports. They are described in the manual Tasks::OptionalTasks. Java tools mostly provide Ant tasks or they describe how to integrate with Ant. Therefore I would have a look into JavaNCSS and Emma homepage. If they provide Ant tasks you usually put them into Ant-Home\lib and write a xmlns info on the project tag: <project name=... xmlns:lib="antlib:path.as.described"><lib:taskname.../> If they dont provide tasks, java written programs can be started via <java> (CoreTask). Jan Please do not print this email unless it is absolutely necessary. The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s) and may contain proprietary, confidential or privileged information. If you are not the intended recipient, you should not disseminate, distribute or copy this e-mail. Please notify the sender immediately and destroy all copies of this message and any attachments. WARNING: Computer viruses can be transmitted via email. The recipient should check this email and any attachments for the presence of viruses. The company accepts no liability for any damage caused by any virus transmitted by this email. www.wipro.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
