2016-02-09 18:18:39 +01: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-01-21 13:42:38 +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-examples-parent</artifactId>
|
2016-01-28 17:32:27 +01:00
|
|
|
<version>0.2.0-SNAPSHOT</version>
|
2016-01-21 13:42:38 +01:00
|
|
|
</parent>
|
2016-02-09 17:49:24 +01:00
|
|
|
<packaging>jar</packaging>
|
2016-05-18 13:48:04 +02:00
|
|
|
<artifactId>hawkbit-example-mgmt-feign-client</artifactId>
|
2017-03-30 08:46:31 +02:00
|
|
|
<name>hawkBit :: Examples :: Management client API</name>
|
2016-01-21 13:42:38 +01:00
|
|
|
|
|
|
|
|
<dependencies>
|
2016-04-26 16:19:37 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2016-05-18 13:48:04 +02:00
|
|
|
<artifactId>hawkbit-example-core-feign-client</artifactId>
|
2016-04-26 16:19:37 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-01-21 13:42:38 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2016-04-20 17:33:03 +02:00
|
|
|
<artifactId>hawkbit-mgmt-api</artifactId>
|
2016-01-21 13:42:38 +01:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-04-28 13:18:27 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 13:42:38 +01:00
|
|
|
<dependency>
|
2016-11-03 15:53:53 +01:00
|
|
|
<groupId>io.github.openfeign</groupId>
|
2016-01-21 13:42:38 +01:00
|
|
|
<artifactId>feign-core</artifactId>
|
2016-04-22 12:24:11 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-11-03 15:53:53 +01:00
|
|
|
<groupId>io.github.openfeign</groupId>
|
2016-04-22 12:24:11 +02:00
|
|
|
<artifactId>feign-jackson</artifactId>
|
2016-04-22 18:03:39 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2016-01-21 13:42:38 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-02-09 17:49:24 +01:00
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
2016-01-21 13:42:38 +01:00
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|