Generate test coverage report

This commit is contained in:
grimsi
2022-10-21 17:44:57 +02:00
parent 0c9eb90f5a
commit 435ed2360e
2 changed files with 60 additions and 5 deletions
+15
View File
@@ -223,6 +223,21 @@
</execution>
</executions>
</plugin>
<!-- JaCoCo coverage report -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>report</id>
<goals>
<goal>report-aggregate</goal>
</goals>
<phase>verify</phase>
</execution>
</executions>
</plugin>
</plugins>
</build>