Top "Jacoco-maven-plugin" questions

A maven plug-in which provides the JaCoCo agent to automated tests and allows basic report creation.

Maven Jacoco Configuration - Exclude classes/packages from report not working

I have a maven multi-module project and I'm using jacoco-maven for code coverage reports. Some classes should not be reported, …

maven configuration jacoco jacoco-maven-plugin
JaCoCo with Maven - missing execution data file

We have a Maven multi module project consisting of a parent (HelloWorld) and different children (HelloWorldServices and HelloWorldPresentation) and use …

java maven maven-3 pom.xml jacoco-maven-plugin
Jacoco Maven multi module project coverage

Seems like there are couple of questions, which are quite old and things changed from Java 8 support of Jacoco. My …

java html report jacoco jacoco-maven-plugin
Jacoco - "Caused by: java.lang.ClassNotFoundException: org.jacoco.agent.rt.internal_6da5971.Offline"

Trying to get coverage via jacoco using offline instrumentation (can't use on-the-fly instrumentation: due to powermock testcases) for a maven …

maven jacoco maven-surefire-plugin jacoco-maven-plugin
JaCoCo: exclude generated methods (using it with Lombok)

I am using JaCoCo and it is considering methods generated by Lombok (generated in the bytecode, not trace of them …

jacoco lombok jacoco-maven-plugin
How to exclude a class from Jacoco coverage?

I want to use Jacoco in a way so that it excludes a Sample.java class from the overall coverage. …

maven jenkins jacoco cobertura jacoco-maven-plugin
How can I exclude files of the Code Coverage of SonarQube using JaCoCo maven plugin

I've got a big issue with the integration of JaCoCo maven plugin for the code covering of SonarQube 6.0. I've got …

java maven sonarqube jacoco-maven-plugin
Trouble configuring JaCoCo in maven

I am trying to do a simple JaCoCo report through Maven and I keep getting the same error. Here is …

java maven jacoco jacoco-maven-plugin
Exclude Setters and Getters in JaCoCo Code Coverage

With the cobertura-maven-plugin setters and getters can be excluded from code coverage using the ignoreTrivial option. Is there also such …

code-coverage setter getter jacoco jacoco-maven-plugin
Jacoco maven plugin clogs up console with Exceptions-java.lang.IllegalStateException: class is already instrumented

I am working on sonar code coverage using Jacoco plugin and using power mock mockito combination to write JUnit test …

java powermock instrumentation jacoco-maven-plugin