2016-08-05 13:19:29 +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-11-03 15:53:53 +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">
|
2016-08-03 09:08:03 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-repository</artifactId>
|
|
|
|
|
<version>0.2.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<artifactId>hawkbit-repository-api</artifactId>
|
2017-03-30 08:46:31 +02:00
|
|
|
<name>hawkBit :: Repository :: API</name>
|
2016-08-03 09:08:03 +02:00
|
|
|
|
|
|
|
|
<dependencies>
|
2016-05-25 17:43:57 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-security-core</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.validation</groupId>
|
|
|
|
|
<artifactId>validation-api</artifactId>
|
|
|
|
|
</dependency>
|
2016-08-03 09:08:03 +02:00
|
|
|
<dependency>
|
2016-05-25 17:43:57 +02:00
|
|
|
<groupId>org.springframework.hateoas</groupId>
|
|
|
|
|
<artifactId>spring-hateoas</artifactId>
|
|
|
|
|
</dependency>
|
2016-11-03 15:53:53 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-bus</artifactId>
|
2016-12-13 12:29:21 +01:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
</exclusion>
|
2017-03-30 08:46:31 +02:00
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.esotericsoftware</groupId>
|
|
|
|
|
<artifactId>kryo-shaded</artifactId>
|
|
|
|
|
</exclusion>
|
2016-12-13 12:29:21 +01:00
|
|
|
</exclusions>
|
2016-11-03 15:53:53 +01:00
|
|
|
</dependency>
|
2016-08-05 13:04:56 +02:00
|
|
|
|
2016-08-03 09:08:03 +02:00
|
|
|
<!-- TEST -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>ru.yandex.qatools.allure</groupId>
|
|
|
|
|
<artifactId>allure-junit-adaptor</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2017-02-16 10:09:14 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2016-08-03 09:08:03 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-06-01 06:28:59 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-08-03 09:08:03 +02:00
|
|
|
</dependencies>
|
2016-05-25 17:43:57 +02:00
|
|
|
</project>
|