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-simulator</artifactId>
|
2017-03-30 08:46:31 +02:00
|
|
|
<name>hawkBit :: Examples :: Management feign client simulator</name>
|
2016-01-21 13:42:38 +01:00
|
|
|
|
2016-02-09 17:49:24 +01:00
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<outputDirectory>${baseDir}</outputDirectory>
|
2017-01-17 15:03:52 +01:00
|
|
|
<classifier>exec</classifier>
|
2016-02-09 17:49:24 +01:00
|
|
|
<addResources>false</addResources>
|
|
|
|
|
<mainClass>org.eclipse.hawkbit.mgmt.client.Application</mainClass>
|
|
|
|
|
<layout>JAR</layout>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
|
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-mgmt-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.springframework.boot</groupId>
|
2016-02-09 17:49:24 +01:00
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2016-01-21 13:42:38 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2016-02-09 17:49:24 +01:00
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-feign</artifactId>
|
2016-01-21 13:42:38 +01:00
|
|
|
</dependency>
|
2016-04-28 12:44:13 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 13:42:38 +01:00
|
|
|
</dependencies>
|
|
|
|
|
</project>
|