<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>emma-maven-plugin</artifactId>
<version>1.0-alpha-3</version>
<configuration>
<check>
<classRate>100</classRate>
<methodRate>95</methodRate>
<lineRate>85</lineRate>
</check>
</configuration>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>emma</goal>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.5.10.201208310627</version>
<configuration>
<check>
<classRate>100</classRate>
<methodRate>100</methodRate>
<lineRate>100</lineRate>
</check>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>