In Maven reports created by JaCoCo, I get pretty poor coverage because all my compiled JSPs are included (and they are long). I tried the following in reporting :
<plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <configuration> <exclude>target/classes/jsp/**/*.class</exclude> </configuration> </plugin>
Another similar configuration is in the build POM section for the prepare-package phase. This does not stop the inclusion of JSP classes in the report. How to avoid this?
maven jsp jacoco
Michael Piefel Feb 04 2018-12-13T00: 00Z
source share