如何在 child 的 pom 中将 jacoco 覆盖率设置为 60%?

How to set jacoco coverage percentage to 60% at child's pom?

谁能告诉我如何在 Child 的 POM 中将 Jacoco 代码覆盖率设置为特定百分比。我有一个 parent 依赖项,预计覆盖率为 80%。我需要在我的 child 项目中将其限制为 60%。我在 child 的 pom 属性下设置 0.600。但这并没有超越 parent 的 80% 覆盖率目标。任何意见表示赞赏..

<jacoco.percentage.instruction>0.600</jacoco.percentage.instruction>

关键是我们不能只覆盖 Jacoco 的属性。我已将以下父级的 pom 插件复制到我的项目中,并将最小覆盖率更新为 60%,而父级的 pom.xml 中为 80%。这对我有用。

<plugin>
   <groupId>org.jacoco</groupId>
   <artifactId>jacoco-maven-plugin</artifactId>
   <version>0.8.2</version>
   <executions>
      <execution>
         <id>default-check</id>
         <goals>
            <goal>check</goal>
         </goals>
         <configuration>
            <rules>
               <rule>
                  <limits>
                     <limit>
                        <counter>INSTRUCTION</counter>
                        <minimum>60.0%</minimum>
                     </limit>
                  </limits>
               </rule>
            </rules>
         </configuration>
      </execution>
      <execution>
         <id>default-audit-check</id>
         <goals>
            <goal>check</goal>
         </goals>
         <configuration>
            <haltOnFailure>false</haltOnFailure>
            <rules>
               <rule>
                  <limits>
                     <limit>
                        <counter>INSTRUCTION</counter>
                        <minimum>60.0%</minimum>
                     </limit>
                  </limits>
               </rule>
            </rules>
         </configuration>
      </execution>
      <execution>
         <id>default-prepare-agent</id>
         <goals>
            <goal>prepare-agent</goal>
         </goals>
         <configuration>
            <propertyName>jacoco.surefire.argLine</propertyName>
         </configuration>
      </execution>
   </executions>
</plugin>