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
|
|
|
|
|
|
|
|
-->
|
2017-03-22 15:50:03 +01:00
|
|
|
|
2016-01-21 13:18:55 +01:00
|
|
|
<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>org.eclipse.hawkbit</groupId>
|
2017-04-26 10:36:21 +02:00
|
|
|
<artifactId>hawkbit-dmf-parent</artifactId>
|
2023-11-16 17:23:01 +02:00
|
|
|
<version>${revision}</version>
|
2016-01-21 13:18:55 +01:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>hawkbit-dmf-amqp</artifactId>
|
2017-04-27 17:10:59 +02:00
|
|
|
<name>hawkBit :: DMF :: AMQP 0.9 Implementation</name>
|
2016-01-21 13:18:55 +01:00
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2016-05-31 20:50:22 +02:00
|
|
|
<artifactId>hawkbit-repository-api</artifactId>
|
2016-01-21 13:18:55 +01:00
|
|
|
<version>${project.version}</version>
|
2016-03-31 13:04:21 +02:00
|
|
|
</dependency>
|
2016-05-31 20:50:22 +02:00
|
|
|
<dependency>
|
2016-03-31 13:04:21 +02:00
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-core</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
2016-01-21 13:18:55 +01:00
|
|
|
</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-dmf-api</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-05-31 20:50:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 13:18:55 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.amqp</groupId>
|
|
|
|
|
<artifactId>spring-rabbit</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2019-01-31 07:29:27 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 13:18:55 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</dependency>
|
2019-01-08 11:11:55 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
2024-02-03 00:43:10 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
|
</dependency>
|
2019-01-08 11:11:55 +01:00
|
|
|
|
2017-03-22 15:50:03 +01:00
|
|
|
|
2016-01-21 13:18:55 +01:00
|
|
|
<!-- Test -->
|
2016-05-31 08:51:49 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2017-04-26 10:36:21 +02:00
|
|
|
<artifactId>hawkbit-dmf-rabbitmq-test</artifactId>
|
2016-05-31 08:51:49 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-01-21 13:18:55 +01:00
|
|
|
<dependency>
|
2018-10-25 18:18:38 +02:00
|
|
|
<groupId>io.qameta.allure</groupId>
|
2021-02-12 08:22:26 +01:00
|
|
|
<artifactId>allure-junit5</artifactId>
|
2016-01-21 13:18:55 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2017-03-22 15:50:03 +01:00
|
|
|
<groupId>org.springframework.amqp</groupId>
|
|
|
|
|
<artifactId>spring-rabbit-test</artifactId>
|
2016-01-21 13:18:55 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|