2016-05-17 17:25:46 +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-04-26 10:56:33 +02:00
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-examples-parent</artifactId>
|
|
|
|
|
<version>0.2.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
2016-05-18 13:48:04 +02:00
|
|
|
<artifactId>hawkbit-example-ddi-feign-client</artifactId>
|
2016-04-26 10:56:33 +02:00
|
|
|
|
2016-05-18 09:24:33 +02:00
|
|
|
<name>hawkBit-example :: DDI Feign Client</name>
|
2016-04-20 15:02:44 +02:00
|
|
|
|
2016-04-26 10:56:33 +02: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-04-26 10:56:33 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2016-05-18 15:39:47 +02:00
|
|
|
<artifactId>hawkbit-ddi-dl-api</artifactId>
|
2016-04-20 15:02:44 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-05-03 14:07:25 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2016-05-18 15:39:47 +02:00
|
|
|
<artifactId>hawkbit-ddi-api</artifactId>
|
2016-05-03 14:07:25 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-04-26 10:56:33 +02:00
|
|
|
<dependency>
|
2016-05-18 15:39:47 +02:00
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
2016-04-20 15:02:44 +02:00
|
|
|
</dependency>
|
2016-04-26 10:56:33 +02:00
|
|
|
<dependency>
|
2016-04-20 15:02:44 +02:00
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
|
<artifactId>feign-core</artifactId>
|
|
|
|
|
</dependency>
|
2016-04-26 10:56:33 +02:00
|
|
|
<dependency>
|
2016-04-20 15:02:44 +02:00
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
|
<artifactId>feign-jackson</artifactId>
|
|
|
|
|
</dependency>
|
2016-04-26 10:56:33 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2016-04-18 12:51:57 +02:00
|
|
|
</project>
|