Hello, I want to know do we get same code coverage reports in these 2 cases - 1. Using jacoco-maven-plugin and excluding classes from config and then generating report - <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.10</version> <configuration> <excludes> <exclude>com/abc/xyz/samples/impl/**/*</exclude> </excludes> </configuration>
2. Generating a Jacoco exec without any exclusion and then applying exclusion from the command line. java -jar /path/to/jacoco-cli.jar report jacoco.exec --classfiles /path/to/classes --html /path/to/report --excludes='*' Also when I run the second command, I noticed the exclusion is not applying and I am getting the complete report as it is in jacoco.exec. Then what is the point of giving exclusion in report command? Thanks -- You received this message because you are subscribed to the Google Groups "JaCoCo and EclEmma Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jacoco/3764853b-2b1f-4d8c-9854-225a4a6c85c1n%40googlegroups.com.
