2024-02-12 16:30:22 +02:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2023 Bosch.IO GmbH and others
|
|
|
|
|
|
|
|
|
|
This program and the accompanying materials are made
|
|
|
|
|
available under the terms of the Eclipse Public License 2.0
|
|
|
|
|
which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: EPL-2.0
|
|
|
|
|
|
|
|
|
|
-->
|
|
|
|
|
<project
|
2024-11-05 11:41:56 +02:00
|
|
|
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" xmlns="http://maven.apache.org/POM/4.0.0">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-sdk</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
2024-02-12 16:30:22 +02:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<artifactId>hawkbit-sdk-demo</artifactId>
|
|
|
|
|
<name>hawkBit :: SDK :: Test / Example</name>
|
|
|
|
|
<description>Test / Example of how SDK could be used to for devices and for Mgmt API access</description>
|
2024-02-12 16:30:22 +02:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<properties>
|
|
|
|
|
<spring-shell.version>3.1.5</spring-shell.version>
|
|
|
|
|
<spring.app.class>org.eclipse.hawkbit.sdk.demo.multidevice.MultiDeviceApp</spring.app.class>
|
|
|
|
|
<start-class>${spring.app.class}</start-class>
|
|
|
|
|
</properties>
|
2024-02-12 16:30:22 +02:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-sdk-device</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-sdk-dmf</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-sdk-mgmt</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2024-02-12 16:30:22 +02:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.shell</groupId>
|
|
|
|
|
<artifactId>spring-shell-starter</artifactId>
|
|
|
|
|
<version>${spring-shell.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2024-02-21 15:44:27 +02:00
|
|
|
|
2024-11-05 11:41:56 +02: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>
|
|
|
|
|
<layout>JAR</layout>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
2024-02-21 15:44:27 +02:00
|
|
|
|
2024-11-05 11:41:56 +02:00
|
|
|
<resources>
|
|
|
|
|
<resource>
|
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
|
</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</build>
|
2024-02-12 16:30:22 +02:00
|
|
|
</project>
|