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
|
|
|
|
|
|
|
|
|
|
-->
|
2024-11-05 11:41:56 +02:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2024-02-12 16:30:22 +02:00
|
|
|
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-parent</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>hawkbit-sdk</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
2024-11-12 15:09:03 +02:00
|
|
|
<name>hawkBit :: SDK :: Parent</name>
|
2024-02-12 16:30:22 +02:00
|
|
|
|
2024-08-19 15:34:29 +03:00
|
|
|
<properties>
|
2025-01-24 20:12:43 +02:00
|
|
|
<spring-cloud-starter-openfeign.version>4.2.0</spring-cloud-starter-openfeign.version>
|
2025-01-29 13:23:46 +02:00
|
|
|
<openfeign-hc5.version>13.5</openfeign-hc5.version>
|
2025-02-14 08:37:01 +02:00
|
|
|
<bouncycastle.version>1.80</bouncycastle.version>
|
2024-08-19 15:34:29 +03:00
|
|
|
</properties>
|
|
|
|
|
|
2024-02-12 16:30:22 +02:00
|
|
|
<modules>
|
|
|
|
|
<module>hawkbit-sdk-commons</module>
|
2024-08-19 15:34:29 +03:00
|
|
|
<module>hawkbit-sdk-mgmt</module>
|
2024-02-12 16:30:22 +02:00
|
|
|
<module>hawkbit-sdk-device</module>
|
2024-04-11 09:03:15 +03:00
|
|
|
<module>hawkbit-sdk-dmf</module>
|
2024-02-12 16:30:22 +02:00
|
|
|
<module>hawkbit-sdk-demo</module>
|
|
|
|
|
</modules>
|
|
|
|
|
</project>
|