Skip to content

Commit

Permalink
Add pitest to the project as a new profile
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinHebert committed Aug 2, 2014
1 parent 20a84b1 commit 4df7dba
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -499,5 +499,31 @@
</plugins>
</build>
</profile>
<!-- Run the Mutation tests -->
<profile>
<id>pitest</id>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.pitest</groupId>
<artifactId>pitest-maven</artifactId>
<version>1.0.0</version>
<configuration>
<targetTests>
<param>*Test</param>
</targetTests>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 4df7dba

Please sign in to comment.