I am using Sonar 3.2 with Ant. I have read that it should be possible to use Cobertura for unit test analysis and JaCoCo for integration test analysis. I have however not found a clear guide on how to do this with Ant. I have set the code coverage engine to be Cobertura like this:
<property name="sonar.core.codeCoveragePlugin" value="cobertura" />
Can I "reset" it to JaCoCo after Cobertura analysis has been done? Then it would be like this:
<property name="sonar.core.codeCoveragePlugin" value="cobertura" />
<property name="sonar.cobertura.reportPath" value=...
<property name="sonar.core.codeCoveragePlugin" value="jacoco" />
<property name="sonar.jacoco.itReportPath" value=...
Thanks