70 lines
2.3 KiB
XML
70 lines
2.3 KiB
XML
|
|
<!--
|
||
|
|
|
||
|
|
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
|
||
|
|
|
||
|
|
-->
|
||
|
|
<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>
|
||
|
|
<version>0.1.0-SNAPSHOT</version>
|
||
|
|
</parent>
|
||
|
|
<artifactId>hawkbit-mgmt-api-client</artifactId>
|
||
|
|
<name>hawkBit Management API example client</name>
|
||
|
|
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
||
|
|
<artifactId>hawkbit-rest-api</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.netflix.feign</groupId>
|
||
|
|
<artifactId>feign-jackson</artifactId>
|
||
|
|
<version>8.12.1</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>com.netflix.feign</groupId>
|
||
|
|
<artifactId>feign-core</artifactId>
|
||
|
|
<version>8.12.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Test -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
||
|
|
<artifactId>hawkbit-example-app</artifactId>
|
||
|
|
<version>${project.version}</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.springframework.boot</groupId>
|
||
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>ru.yandex.qatools.allure</groupId>
|
||
|
|
<artifactId>allure-junit-adaptor</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.easytesting</groupId>
|
||
|
|
<artifactId>fest-assert-core</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.easytesting</groupId>
|
||
|
|
<artifactId>fest-assert</artifactId>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
|
||
|
|
</project>
|