Add pitest plugin for mutation testing
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 4 Jul 2016 17:50:44 +0000 (19:50 +0200)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Mon, 4 Jul 2016 17:50:44 +0000 (19:50 +0200)
pom.xml

diff --git a/pom.xml b/pom.xml
index 72dd184..b20d3de 100644 (file)
--- a/pom.xml
+++ b/pom.xml
                                        </execution>
                                </executions>
                        </plugin>
+                       <plugin>
+                               <groupId>org.pitest</groupId>
+                               <artifactId>pitest-maven</artifactId>
+                               <version>1.1.10</version>
+                               <configuration>
+                                       <targetClasses>
+                                               <param>net.pterodactylus.sone.*</param>
+                                       </targetClasses>
+                                       <targetTests>
+                                               <param>net.pterodactylus.sone.*</param>
+                                       </targetTests>
+                               </configuration>
+                       </plugin>
                </plugins>
        </build>
 </project>