Paul Campbell
dd43bf4c13
git-subtree-dir: tiles git-subtree-mainline:d9a18c5d9c
git-subtree-split:48d577e5dc
64 lines
2.4 KiB
XML
64 lines
2.4 KiB
XML
<project>
|
|
<properties>
|
|
<highwheel-maven.version>1.2</highwheel-maven.version>
|
|
<pitest.version>1.2.0</pitest.version>
|
|
<pitest.coverage>0</pitest.coverage>
|
|
<pitest.mutation>0</pitest.mutation>
|
|
<pitest.skip>false</pitest.skip>
|
|
<pitest.failWhenNoMutations>true</pitest.failWhenNoMutations>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.pitest</groupId>
|
|
<artifactId>highwheel-maven</artifactId>
|
|
<version>${highwheel-maven.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>analyse</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin><!-- highwheel-maven -->
|
|
<plugin>
|
|
<groupId>org.pitest</groupId>
|
|
<artifactId>pitest-maven</artifactId>
|
|
<version>${pitest.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>mutationCoverage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<skip>${pitest.skip}</skip>
|
|
<timestampedReports>false</timestampedReports>
|
|
<excludedClasses>*.Immutable*</excludedClasses>
|
|
<coverageThreshold>${pitest.coverage}</coverageThreshold>
|
|
<mutationThreshold>${pitest.mutation}</mutationThreshold>
|
|
<failWhenNoMutations>${pitest.failWhenNoMutations}</failWhenNoMutations>
|
|
</configuration>
|
|
</plugin><!-- pitest-maven -->
|
|
</plugins>
|
|
</build>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.pitest</groupId>
|
|
<artifactId>pitest-maven</artifactId>
|
|
<version>${pitest.version}</version>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>report</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin><!-- pitest-maven -->
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|