Possible Duplicate:
SONAR - Measure Code Coverage using Cobertura
I have configured our ant build to use the sonar plug-in and it runs the static analysis tools and loads the results correctly into Sonar. Our test group is running system level tests and collecting code coverage with Cobertura, which works fine and we can generate xml or html cobertura reports to look at the results.
We would now like to load the resultant coverage.xml file into Sonar. When I set up an Ant target to use the existing xml report, sonar wants to also run findbugs.
Since the system level testing is done independently from the build, how can I load just the Cobertura results into Sonar? I'm okay with the 'coverage' results being stored in a separate Sonar project (separate from the static analysis results)
Thanks