Skip to content

Commit

Permalink
Re-add the mutation tester
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Smith committed Sep 24, 2014
1 parent 10e380b commit adf13b5
Showing 1 changed file with 44 additions and 32 deletions.
76 changes: 44 additions & 32 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,34 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Hangman</groupId>
<artifactId>Hangman</artifactId>
<version>1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<forceCreation>true</forceCreation>
<archive>
<manifest>
<mainClass>com.hangman.HangmanRunner</mainClass>
</manifest>
</archive>
<outputDirectory>target</outputDirectory>
</configuration>
</plugin>
</plugins>
</build>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>Hangman</groupId>
<artifactId>Hangman</artifactId>
<version>1</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.5</version>
<configuration>
<forceCreation>true</forceCreation>
<archive>
<manifest>
<mainClass>com.hangman.HangmanRunner</mainClass>
</manifest>
</archive>
<outputDirectory>target</outputDirectory>
</configuration>
</plugin>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.0.0</version>
<configuration>
<targetClasses>
<param>com.hangman.players.*</param>
</targetClasses>
<targetTests>
<param>com.hangman.players.*</param>
</targetTests>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit adf13b5

Please sign in to comment.