hofund-test-reports
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>dev.logchange.hofund</groupId> <artifactId>hofund-test-reports</artifactId> <version>2.10.1</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> <artifactId>hofund</artifactId> <groupId>dev.logchange.hofund</groupId> <version>2.10.1</version> </parent> <artifactId>hofund-test-reports</artifactId> <name>hofund test reports</name> <description> hofund test reports allow aggregating reports from submodules and join them. </description> <packaging>pom</packaging> <dependencies> <dependency> <groupId>dev.logchange.hofund</groupId> <artifactId>hofund-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.logchange.hofund</groupId> <artifactId>hofund-spring</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.logchange.hofund</groupId> <artifactId>hofund-spring-boot-autoconfigure</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.logchange.hofund</groupId> <artifactId>hofund-spring-boot-starter</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>dev.logchange.hofund</groupId> <artifactId>hofund-spring-boot-e2e</artifactId> <version>${project.version}</version> </dependency> </dependencies> <profiles> <profile> <id>jacoco</id> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.13</version> <executions> <execution> <phase>verify</phase> <goals> <goal>report-aggregate</goal> </goals> <configuration> <dataFileIncludes> <dataFileInclude>**/jacoco.exec</dataFileInclude> </dataFileIncludes> <outputDirectory>${project.reporting.outputDirectory}/jacoco-aggregate</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>