Configure pitest for mutation tests

This commit is contained in:
Christian Koop 2022-04-15 18:34:29 +02:00
parent f6b091bb79
commit d1fafd301d
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
1 changed files with 21 additions and 0 deletions

21
pom.xml
View File

@ -107,6 +107,20 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.7.5</version>
<dependencies>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-junit5-plugin</artifactId>
<version>0.14</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
@ -182,5 +196,12 @@
<version>1.10.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.7.5</version>
<type>maven-plugin</type>
</dependency>
</dependencies>
</project>