Add pitest-tile
This commit is contained in:
parent
8f87de96a2
commit
e78b18cfc1
4 changed files with 82 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
||||||
<tile>net.kemitix.tiles:digraph-tile:${kemitix-tiles.version}</tile>
|
<tile>net.kemitix.tiles:digraph-tile:${kemitix-tiles.version}</tile>
|
||||||
<tile>net.kemitix.tiles:testing-tile:${kemitix-tiles.version}</tile>
|
<tile>net.kemitix.tiles:testing-tile:${kemitix-tiles.version}</tile>
|
||||||
<tile>net.kemitix.tiles:coverage-tile:${kemitix-tiles.version}</tile>
|
<tile>net.kemitix.tiles:coverage-tile:${kemitix-tiles.version}</tile>
|
||||||
|
<tile>net.kemitix.tiles:pitest-tile:${kemitix-tiles.version}</tile>
|
||||||
<tile>net.kemitix.tiles:release-tile:${kemitix-tiles.version}</tile>
|
<tile>net.kemitix.tiles:release-tile:${kemitix-tiles.version}</tile>
|
||||||
</tiles>
|
</tiles>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
16
pitest/pom.xml
Normal file
16
pitest/pom.xml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?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">
|
||||||
|
<parent>
|
||||||
|
<artifactId>tiles-parent</artifactId>
|
||||||
|
<groupId>net.kemitix.tiles</groupId>
|
||||||
|
<version>0.1.0-SNAPSHOT</version>
|
||||||
|
<relativePath>../tiles-parent/pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
<artifactId>pitest-tile</artifactId>
|
||||||
|
<packaging>tile</packaging>
|
||||||
|
|
||||||
|
</project>
|
64
pitest/tile.xml
Normal file
64
pitest/tile.xml
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
<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>
|
1
pom.xml
1
pom.xml
|
@ -20,6 +20,7 @@
|
||||||
<module>coverage</module>
|
<module>coverage</module>
|
||||||
<module>testing</module>
|
<module>testing</module>
|
||||||
<module>maven-plugins</module>
|
<module>maven-plugins</module>
|
||||||
|
<module>pitest</module>
|
||||||
</modules>
|
</modules>
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue