<plugin>
<groupId> org.jacoco<groupId>
<artifactId>jacoco-maven-plugin<artifactId>
<configuration>
<append>true</append>
<excludes>
<exclude>com.abc.def.*.java<exclude>
<excludes>
<configuration>
I want to exclude java files under package com.abc.def for code coverage.Using jacoco v0.7.8.
But still sonar jacoco code coverage is not improving and remains same as 1 % and java files under mentuined package still coming in code coverage report as seen from browser localhost:9000. please suggest the exact sytax in detail if posible with example to correct this issue.
Thanks,
Ashish