2016-05-31 08:51:49 +02:00
|
|
|
<!--
|
|
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2016-05-31 08:51:49 +02: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-05-31 08:51:49 +02:00
|
|
|
|
|
|
|
|
-->
|
2016-12-09 14:42:04 +01:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2021-03-22 10:37:31 +01:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-12-09 14:42:04 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-repository</artifactId>
|
2023-11-16 17:23:01 +02:00
|
|
|
<version>${revision}</version>
|
2016-12-09 14:42:04 +01:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>hawkbit-repository-test</artifactId>
|
2017-03-30 08:46:31 +02:00
|
|
|
<name>hawkBit :: Repository :: Test Utilities</name>
|
2016-12-09 14:42:04 +01:00
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<sonar.skip>true</sonar.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2016-05-31 08:51:49 +02:00
|
|
|
<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>
|
2022-09-19 10:33:31 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-security-core</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-12-09 14:42:04 +01:00
|
|
|
<dependency>
|
2016-05-31 08:51:49 +02:00
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2016-11-14 11:23:50 +01:00
|
|
|
<artifactId>hawkbit-artifact-repository-filesystem</artifactId>
|
2016-05-31 08:51:49 +02:00
|
|
|
<version>${project.version}</version>
|
2016-05-31 20:50:22 +02:00
|
|
|
</dependency>
|
2018-03-13 16:41:10 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
<artifactId>h2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mariadb.jdbc</groupId>
|
|
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2021-03-22 10:37:31 +01:00
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
<artifactId>mssql-jdbc</artifactId>
|
2018-03-13 16:41:10 +01:00
|
|
|
</dependency>
|
2021-01-14 09:07:03 +01:00
|
|
|
<dependency>
|
2021-03-22 10:37:31 +01:00
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
</dependency>
|
2016-11-03 15:53:53 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-13 12:29:21 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
2023-12-07 22:23:40 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-31 20:50:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2021-03-22 10:37:31 +01:00
|
|
|
</dependency>
|
2016-05-31 08:51:49 +02:00
|
|
|
<dependency>
|
2016-11-14 11:23:50 +01:00
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-tx</artifactId>
|
2016-05-31 08:51:49 +02:00
|
|
|
</dependency>
|
2017-06-01 06:28:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2016-05-31 08:51:49 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-31 20:50:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-aspects</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
|
</dependency>
|
2016-11-03 15:53:53 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
2024-01-20 15:57:17 +02:00
|
|
|
<artifactId>spring-cloud-stream-test-binder</artifactId>
|
2016-11-03 15:53:53 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-12-09 14:42:04 +01:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-stream-test-support</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-11-03 15:53:53 +01:00
|
|
|
<groupId>io.protostuff</groupId>
|
|
|
|
|
<artifactId>protostuff-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.protostuff</groupId>
|
|
|
|
|
<artifactId>protostuff-runtime</artifactId>
|
|
|
|
|
</dependency>
|
2016-11-14 10:25:49 +01:00
|
|
|
<dependency>
|
2019-01-31 07:29:27 +01:00
|
|
|
<groupId>org.awaitility</groupId>
|
2016-11-14 10:25:49 +01:00
|
|
|
<artifactId>awaitility</artifactId>
|
|
|
|
|
</dependency>
|
2016-12-09 14:42:04 +01:00
|
|
|
</dependencies>
|
2022-09-19 10:33:31 +02:00
|
|
|
</project>
|