私たちのプロジェクトではjacoco-maven-plugin
とビルド中にこのエラーが発生します。
[ERROR] Failed to execute goal org.jacoco:jacoco-maven-plugin:0.8.5:check (jacoco-check) on project my-project: Coverage checks have not been met. See log for details.
_
カバレッジなどを修正するのが良いことを知っています。しかし時々私はすぐにプロジェクトを構築する必要があるだけです。この目的のためのいくつかの種類のパラメータはありますか?好き mvn clean install -Dskip.jacoco.check=true
またはすぐにこのチェックをスキップする他の方法は?
Pom.xmlまたはelse sonar-project.propertiesを使用して、いくつかのJavaファイルのコードカバレッジをスキップできます。
EX:以下のプラグインを使用して、タグにコードカバレッジを必要としないJavaファイルのパッケージを提供します。
_<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.5</version>
<executions>
<execution>
<id>default-prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>default-report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>default-check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<excludes>
<exclude>com/sbi/mdcm/v1_0_0/insurancequote/autogen/**</exclude>
<exclude>com/sbi/mdcm/v1_0_0/insurancequote_resources/autogen/**</exclude>
</excludes>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>0.80</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
_
sonar-Project.properties:
_sonar.exclusions=**/com/sbi/mdcm/v1_0/insurancepolicy_adapter/osi/model/*.Java
_