2016-05-31 08:51:49 +02:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2015 Bosch Software Innovations GmbH and others.
|
|
|
|
|
|
|
|
|
|
All rights reserved. This program and the accompanying materials
|
|
|
|
|
are made available under the terms of the Eclipse Public License v1.0
|
|
|
|
|
which accompanies this distribution, and is available at
|
|
|
|
|
http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
|
|
|
|
|
|
-->
|
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"
|
|
|
|
|
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>
|
|
|
|
|
<artifactId>hawkbit-repository</artifactId>
|
2018-06-11 15:57:15 +02:00
|
|
|
<version>0.3.0-SNAPSHOT</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>
|
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>
|
|
|
|
|
<groupId>com.microsoft.sqlserver</groupId>
|
|
|
|
|
<artifactId>mssql-jdbc</artifactId>
|
|
|
|
|
</dependency>
|
2021-01-14 09:07:03 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
|
</dependency>
|
2018-03-13 16:41:10 +01:00
|
|
|
<!-- Add a JDBC DB2 compatabile driver if you want to run tests against DB2, e.g. -->
|
|
|
|
|
<!-- <dependency> -->
|
|
|
|
|
<!-- <groupId>com.ibm.db2.jcc</groupId> -->
|
|
|
|
|
<!-- <artifactId>db2jcc4</artifactId> -->
|
|
|
|
|
<!-- <version>11.1.2.2</version> -->
|
|
|
|
|
<!-- </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>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-jetty</artifactId>
|
|
|
|
|
</dependency>
|
2016-05-31 20:50:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
2017-06-01 06:28:59 +02:00
|
|
|
</dependency>
|
2017-03-30 08:46:31 +02:00
|
|
|
<dependency>
|
2017-06-01 06:28:59 +02:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
2017-03-30 08:46:31 +02: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>
|
2016-12-09 14:42:04 +01:00
|
|
|
<dependency>
|
2016-05-31 08:51:49 +02:00
|
|
|
<groupId>net._01001111</groupId>
|
|
|
|
|
<artifactId>jlorem</artifactId>
|
2017-06-01 06:28:59 +02:00
|
|
|
</dependency>
|
|
|
|
|
<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>
|
|
|
|
|
<artifactId>spring-cloud-stream-binder-test</artifactId>
|
|
|
|
|
</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>
|
2016-05-31 08:51:49 +02:00
|
|
|
</project>
|