Permalink
Cannot retrieve contributors at this time
<?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>org.demo.intestption</groupId> | |
<artifactId>intestption</artifactId> | |
<version>1.0.0-SNAPSHOT</version> | |
<packaging>jar</packaging> | |
<name>intestption</name> | |
<description>INTESTPTION - Test your tests with PiTest - Demo companion project</description> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | |
<java.version>1.8</java.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.12</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.assertj</groupId> | |
<artifactId>assertj-core</artifactId> | |
<version>3.10.0</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.projectlombok</groupId> | |
<artifactId>lombok</artifactId> | |
<version>1.18.2</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.code.findbugs</groupId> | |
<artifactId>annotations</artifactId> | |
<version>3.0.1</version> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.pitest</groupId> | |
<artifactId>pitest-maven</artifactId> | |
<version>1.4.3</version> | |
<executions> | |
<execution> | |
<id>pitest</id> | |
<phase>test</phase> | |
<goals> | |
<goal>mutationCoverage</goal> | |
</goals> | |
</execution> | |
</executions> | |
<configuration> | |
<mutators> | |
<mutator>ALL</mutator> | |
</mutators> | |
<!--We want each report to override the former one--> | |
<timestampedReports>false</timestampedReports> | |
<!-- Speed-up mutation testing by reusing last results for classes that have not changed since previous analysis --> | |
<!-- See http://pitest.org/quickstart/incremental_analysis/ for --> | |
<historyInputFile>target/pitHistory.txt</historyInputFile> | |
<historyOutputFile>target/pitHistory.txt</historyOutputFile> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |