logchange-test-reports
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-test-reports</artifactId> <version>1.19.0</version> </dependency>
<?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> <parent> <groupId>dev.logchange</groupId> <artifactId>logchange</artifactId> <version>1.19.0</version> </parent> <artifactId>logchange-test-reports</artifactId> <packaging>pom</packaging> <dependencies> <dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.logchange</groupId> <artifactId>logchange-maven-plugin</artifactId> <version>${project.version}</version> </dependency> </dependencies> <profiles> <profile> <id>pitest</id> <build> <plugins> <plugin> <groupId>org.pitest</groupId> <artifactId>pitest-maven</artifactId> <executions> <execution> <id>run-mutation-tests</id> <phase>none</phase> </execution> <execution> <id>put-it-together</id> <goals> <goal>report-aggregate</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>