When I write
<sonar.jacoco.excludes>*.model.*</sonar.jacoco.excludes>
The package is not excluded from instrumentation / reporting and coverage shows as 0%
Why is this ?
Sonar version 3.6
Common pitfall to use the wrong pattern to exclude. Notice the .
Bad :
<sonar.jacoco.excludes>*.model.*</sonar.jacoco.excludes>
Good:
<sonar.jacoco.excludes>*model*</sonar.jacoco.excludes>
Documentation for weary travellers.