hawkbit-test-report
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-test-report</artifactId> <version>0.6.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015 Bosch Software Innovations GmbH and others This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 --> <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.eclipse.hawkbit</groupId> <artifactId>hawkbit-parent</artifactId> <version>0.6.1</version> </parent> <artifactId>hawkbit-test-report</artifactId> <version>0.6.1</version> <name>hawkBit :: Test Report</name> <licenses> <license> <name>EPL-2.0</name> <url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url> <comments>Eclipse Public License - Version 2.0</comments> </license> </licenses> <dependencies> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-security-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-security-integration</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-http-security</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-repository-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-repository-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-repository-jpa</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-artifact-repository-filesystem</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-autoconfigure</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-ddi-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-ddi-resource</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-mgmt-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-mgmt-resource</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-rest-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-dmf-amqp</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-dmf-api</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-update-server</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>aggregate-reports</id> <phase>verify</phase> <goals> <goal>report-aggregate</goal> </goals> <configuration> <outputDirectory>${jacoco.outputDir}/jacoco-aggregate</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>generateTestReport</id> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <executions> <execution> <id>copy-resources</id> <phase>verify</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${basedir}/target/allure-results</outputDirectory> <resources> <resource> <directory>${basedir}/..</directory> <filtering>false</filtering> <includes> <include>**/target/allure-results/*.json</include> </includes> </resource> <resource> <directory>${basedir}</directory> <filtering>false</filtering> <includes> <include>placeholder.txt</include> </includes> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>create-report-zip-assembly</id> <phase>verify</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptors> <descriptor>src/main/resources/assemblies/test-report.xml</descriptor> </descriptors> <appendAssemblyId>true</appendAssemblyId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>