2016-01-21 13:18:55 +01:00
|
|
|
<!--
|
|
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2016-01-21 13:18:55 +01:00
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
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
|
2016-01-21 13:18:55 +01:00
|
|
|
|
|
|
|
|
-->
|
2024-11-05 11:41:56 +02:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
2019-11-08 15:41:18 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2024-11-05 11:41:56 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-parent</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
2024-11-12 15:09:03 +02:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<artifactId>hawkbit-test-report</artifactId>
|
|
|
|
|
<name>hawkBit :: Test Report</name>
|
2019-11-08 15:41:18 +01:00
|
|
|
|
2025-06-20 13:41:26 +03:00
|
|
|
<!-- enumerate all modules that should be included in the jacoco test report since it aggregates only direct dependencies -->
|
2024-11-05 11:41:56 +02:00
|
|
|
<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>
|
2025-09-02 16:08:14 +03:00
|
|
|
<artifactId>hawkbit-artifact-fs</artifactId>
|
2024-11-05 11:41:56 +02:00
|
|
|
<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>
|
2025-06-23 14:52:40 +03:00
|
|
|
<artifactId>hawkbit-autoconfigure</artifactId>
|
2024-11-05 11:41:56 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2025-06-23 14:52:40 +03:00
|
|
|
<artifactId>hawkbit-ddi-api</artifactId>
|
2024-11-05 11:41:56 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2025-06-23 14:52:40 +03:00
|
|
|
<artifactId>hawkbit-ddi-resource</artifactId>
|
2024-11-05 11:41:56 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2025-06-23 14:52:40 +03:00
|
|
|
<artifactId>hawkbit-ddi-security</artifactId>
|
2024-11-05 11:41:56 +02:00
|
|
|
<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>
|
2019-11-08 15:41:18 +01:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>generateTestReport</id>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
2025-06-20 13:41:26 +03:00
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
2024-11-05 11:41:56 +02:00
|
|
|
<executions>
|
|
|
|
|
<execution>
|
2025-06-20 13:41:26 +03:00
|
|
|
<id>aggregate-reports</id>
|
2024-11-05 11:41:56 +02:00
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
2025-06-20 13:41:26 +03:00
|
|
|
<goal>report-aggregate</goal>
|
2024-11-05 11:41:56 +02:00
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
2025-06-20 13:41:26 +03:00
|
|
|
<outputDirectory>${project.basedir}/../target/jacoco-aggregate</outputDirectory>
|
2024-11-05 11:41:56 +02:00
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
2025-06-20 13:41:26 +03:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptors>
|
|
|
|
|
<descriptor>src/main/resources/assemblies/test-report.xml</descriptor>
|
|
|
|
|
</descriptors>
|
|
|
|
|
<appendAssemblyId>true</appendAssemblyId>
|
|
|
|
|
</configuration>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>create-report-zip-assembly</id>
|
|
|
|
|
<phase>verify</phase>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>single</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</profile>
|
|
|
|
|
</profiles>
|
2019-11-08 15:41:18 +01:00
|
|
|
</project>
|