hawkbit-sdk-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.eclipse.hawkbit</groupId> <artifactId>hawkbit-sdk-demo</artifactId> <version>0.7.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- 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 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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> <artifactId>hawkbit-sdk</artifactId> <version>0.7.0</version> </parent> <artifactId>hawkbit-sdk-demo</artifactId> <version>0.7.0</version> <name>hawkBit :: SDK :: Test / Example</name> <description>Test / Example of how SDK could be used to for devices and for Mgmt API access</description> <licenses> <license> <name>EPL-2.0</name> <url>https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.txt</url> <comments>Eclipse Public License - Version 2.0</comments> </license> </licenses> <properties> <spring-shell.version>3.1.5</spring-shell.version> <start-class>${spring.app.class}</start-class> <spring.app.class>org.eclipse.hawkbit.sdk.demo.multidevice.MultiDeviceApp</spring.app.class> </properties> <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> <dependency> <groupId>org.springframework.shell</groupId> <artifactId>spring-shell-starter</artifactId> <version>${spring-shell.version}</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <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> </build> </project>