如何使用JaCoCo忽略内部/嵌套类?
2022-09-02 23:01:08
我试图忽略一些生成的类,并且这些类被忽略得很好。但是,如果这些类具有内部类,则尽管父类被排除在外,但这些类仍会被包括在内。这是我的配置:
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<excludes>
<exclude>**/*DB.*</exclude>
<exclude>**/*DTO.*</exclude>
</excludes>
</configuration>
</execution>
</executions>
</plugin>
尝试通过排除来使用 ParentClass.NestedClass 的标准 Java 名称约定没有帮助。**/*DB.*.*