PIT auf Domain und Application beschränken

This commit is contained in:
2026-04-21 06:06:45 +02:00
parent 016da8318d
commit 523774707b
4 changed files with 35 additions and 4 deletions
+14
View File
@@ -20,6 +20,20 @@
<build>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<executions>
<execution>
<id>pitest</id>
<configuration>
<skip>false</skip>
<coverageThreshold>70</coverageThreshold>
<mutationThreshold>70</mutationThreshold>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>