Added Jacoco plugin

This commit is contained in:
robert-bor 2016-11-29 20:00:59 +01:00
parent 8ae9636201
commit a88ad48e05

20
pom.xml
View File

@ -143,6 +143,26 @@
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.7.201606060606</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>