Updated jacoco configuration

This commit is contained in:
Klemek
2019-01-20 17:26:04 +01:00
parent e4753f6a76
commit 0db4e2c60a
+11 -2
View File
@@ -158,18 +158,27 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<!-- Coverage --> <!-- Unit tests coverage -->
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId> <artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version> <version>0.8.2</version>
<configuration>
<append>true</append>
</configuration>
<executions> <executions>
<execution> <execution>
<id>prepare-agent</id>
<goals> <goals>
<goal>prepare-agent</goal> <goal>prepare-agent</goal>
</goals> </goals>
</execution> </execution>
<execution>
<id>post-unit-test</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>