Add code coverage

This commit is contained in:
Mateusz Pieła 2024-03-10 01:21:19 +01:00
parent 39dd7f45d5
commit fc3a11cf40

19
pom.xml
View file

@ -50,6 +50,25 @@
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.11</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>generate-code-coverage-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>