Add coverage report

This commit is contained in:
Ben van Hartingsveldt 2024-12-02 13:45:25 +01:00
parent bc3a0ea8cc
commit 70424f5ab6
No known key found for this signature in database
GPG key ID: 261AA214130CE7AB

18
pom.xml
View file

@ -38,6 +38,24 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>