2016-04-28 16:23:07 +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-27 12:23:36 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2016-04-28 16:23:07 +02:00
|
|
|
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>
|
|
|
|
|
<version>0.2.0-SNAPSHOT</version>
|
|
|
|
|
</parent>
|
2016-04-27 12:23:36 +02:00
|
|
|
|
2016-05-18 13:48:04 +02:00
|
|
|
<artifactId>hawkbit-example-core-feign-client</artifactId>
|
2016-05-18 09:24:33 +02:00
|
|
|
<name>hawkBit-example :: Feign Core Client</name>
|
2016-04-27 12:23:36 +02:00
|
|
|
|
2016-04-28 16:23:07 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
|
<artifactId>feign-core</artifactId>
|
2016-04-28 16:42:20 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-netflix-core</artifactId>
|
|
|
|
|
<version>1.0.7.RELEASE</version>
|
2016-04-28 18:38:19 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
2016-04-28 16:42:20 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-04-28 18:17:11 +02:00
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
|
<artifactId>feign-slf4j</artifactId>
|
2016-04-28 07:44:14 +02:00
|
|
|
</dependency>
|
2016-04-28 16:23:07 +02:00
|
|
|
</dependencies>
|
2016-04-27 12:23:36 +02:00
|
|
|
</project>
|