Using the cobertura-maven-plugin setters and getters can be excluded from code coverage using the ignoreTrivial option. Is there such a possibility with jacoco-maven-plugin ?
This is my current configuration:
<plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.7.1.201405082137</version> <configuration> <excludes> <exclude>com/welovecoding/web/blog/test/**/*.class</exclude> </excludes> </configuration> <executions> <execution> <id>amend-unit-test-java-agent-option</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin>
setter getter code-coverage jacoco jacoco-maven-plugin
Benny neugebauer
source share