基本上 sonarqube 使用 jacoco 进行代码覆盖。但我想从覆盖范围中排除几个类。根据我在 pom.xml 中使用下面提到的插件的几个文档。
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>
src/main/java/org/sample/SampleRepository.java
</exclude>
</excludes>
</configuration>
</plugin>
可悲的是它不起作用。需要帮助。