Configurei conforme o exemplo apenas atualizando a versão do plugin, ai com isso na parte do ele da erro...
Qual seria a opção para fazer esse check nas versões atuais... !?
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<check>
<classRatio>100</classRatio>
<instructionRatio>90</instructionRatio>
<methodRatio>95</methodRatio>
<branchRatio>85</branchRatio>
<complexityRatio>85</complexityRatio>
<lineRatio>90</lineRatio>
</check>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>