2016-01-21 13:18:55 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
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 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>
|
2016-01-28 17:30:52 +01:00
|
|
|
<version>0.2.0-SNAPSHOT</version>
|
2016-01-21 13:42:38 +01:00
|
|
|
<artifactId>hawkbit-examples-parent</artifactId>
|
|
|
|
|
</parent>
|
2016-01-21 13:18:55 +01:00
|
|
|
|
2016-01-21 13:42:38 +01:00
|
|
|
<artifactId>hawkbit-device-simulator</artifactId>
|
|
|
|
|
<name>hawkBit :: Device Simulator</name>
|
|
|
|
|
<description>Device Management Federation API based simulator</description>
|
2016-01-21 13:18:55 +01:00
|
|
|
|
2016-01-21 13:42:38 +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>
|
|
|
|
|
<addResources>false</addResources>
|
|
|
|
|
<mainClass>org.eclipse.hawkbit.simulator.DeviceSimulator</mainClass>
|
|
|
|
|
<layout>JAR</layout>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2016-04-02 13:29:40 +02:00
|
|
|
<resources>
|
2016-04-02 22:13:21 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
2016-04-02 13:29:40 +02:00
|
|
|
<resource>
|
|
|
|
|
<directory>cf</directory>
|
|
|
|
|
<filtering>true</filtering>
|
|
|
|
|
<targetPath>${project.build.directory}</targetPath>
|
|
|
|
|
<includes>
|
|
|
|
|
<include>manifest.yml</include>
|
|
|
|
|
</includes>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
2016-01-21 13:42:38 +01:00
|
|
|
</build>
|
2016-01-21 13:18:55 +01:00
|
|
|
|
2016-01-21 13:42:38 +01:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-dmf-api</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.amqp</groupId>
|
|
|
|
|
<artifactId>spring-rabbit</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-config</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 17:56:26 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-push</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 13:42:38 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
2016-01-21 17:56:26 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
|
<artifactId>feign-jackson</artifactId>
|
|
|
|
|
<version>8.14.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.netflix.feign</groupId>
|
|
|
|
|
<artifactId>feign-core</artifactId>
|
|
|
|
|
<version>8.12.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.jayway.jsonpath</groupId>
|
|
|
|
|
<artifactId>json-path</artifactId>
|
|
|
|
|
</dependency>
|
2016-02-25 17:59:46 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2016-01-21 13:42:38 +01:00
|
|
|
</dependencies>
|
2016-01-21 17:56:26 +01:00
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-bom</artifactId>
|
2016-03-05 11:21:25 +01:00
|
|
|
<version>7.6.3</version>
|
2016-01-21 17:56:26 +01:00
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2016-01-21 13:18:55 +01:00
|
|
|
</project>
|