pitest-aggregator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.pitest</groupId> <artifactId>pitest-aggregator</artifactId> <version>1.20.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.pitest</groupId> <artifactId>pitest-parent</artifactId> <version>1.20.0</version> </parent> <groupId>org.pitest</groupId> <artifactId>pitest-aggregator</artifactId> <version>1.20.0</version> <name>pitest-aggregator</name> <description>Aggregates the output of report XML documents into a new combined HTML report</description> <url>https://pitest.org</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-entry</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.pitest</groupId> <artifactId>pitest-html-report</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>com.fasterxml.jackson.dataformat</groupId> <artifactId>jackson-dataformat-xml</artifactId> <version>2.17.0</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>1.3</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>com.fasterxml.jackson.dataformat:*</include> <include>com.fasterxml.jackson.core:*</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.fasterxml.jackson</pattern> <shadedPattern>pitest.fasterxml.jackson</shadedPattern> </relocation> </relocations> <exclude>META-INF/versions/**</exclude> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> </plugin> </plugins> </build> </project>