8bi*_*kie 1 configuration maven jacoco jacoco-maven-plugin
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.0</version>
<configuration>
<!-- remove haltOnFailure to purposely fail build once we recover coverage back to 70% -->
<haltOnFailure>false</haltOnFailure>
<rules>
<rule>
<element>CLASS</element>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.70</minimum>
</limit>
<limit>
<counter>BRANCH</counter>
<value>COVEREDRATIO</value>
<minimum>0.70</minimum>
</limit>
</limits>
<excludes>
<!-- exclude domain objects -->
<exclude>com/path/to/classes/**/*</exclude>
</excludes>
</rule>
</rules>
</configuration>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
<goal>report</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
Run Code Online (Sandbox Code Playgroud)
预期行为: target/site/jacoco/index.html 中的 HTML 报告不包含 com/path/to/classes 行
实际行为: target/site/jacoco/index.html 中的 HTML 报告包含一行 com/path/to/classes 导致覆盖率报告为(在我的情况下)32%,证明包含此包并且不应该。
我一定做错了什么?
您可以从's节点上的检测/分析/报告中完全排除文件configurationexcludes
<configuration>
<excludes>
<exclude>com/path/to/classes/**/*</exclude>
</excludes>
</configuration>
Run Code Online (Sandbox Code Playgroud)
在rule节点上指定的排除仅忽略为该规则排除的类
| 归档时间: |
|
| 查看次数: |
4706 次 |
| 最近记录: |