2023-12-04 15:00:18 +02:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2023 Contributors to the Eclipse Foundation
|
|
|
|
|
|
|
|
|
|
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:38:12 +02:00
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2023-12-04 15:00:18 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
2024-01-20 15:57:17 +02:00
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2024-11-11 16:13:08 +02:00
|
|
|
<artifactId>hawkbit-parent</artifactId>
|
2024-01-20 15:57:17 +02:00
|
|
|
<version>${revision}</version>
|
2023-12-04 15:00:18 +02:00
|
|
|
</parent>
|
|
|
|
|
|
2025-11-17 09:03:27 +02:00
|
|
|
<artifactId>hawkbit-ui</artifactId>
|
2023-12-04 15:00:18 +02:00
|
|
|
<packaging>jar</packaging>
|
2025-11-17 09:03:27 +02:00
|
|
|
<name>hawkBit :: UI</name>
|
2023-12-04 15:00:18 +02:00
|
|
|
|
|
|
|
|
<properties>
|
2026-05-26 14:16:13 +03:00
|
|
|
<vaadin.version>25.1.6</vaadin.version>
|
2024-01-11 12:25:31 +02:00
|
|
|
</properties>
|
2024-01-11 11:23:19 +02:00
|
|
|
|
2023-12-04 15:00:18 +02:00
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-bom</artifactId>
|
|
|
|
|
<version>${vaadin.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2024-02-21 15:46:44 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-sdk-commons</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</dependency>
|
2023-12-04 15:00:18 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-mgmt-api</artifactId>
|
2023-12-22 11:02:24 +02:00
|
|
|
<version>${revision}</version>
|
2023-12-04 15:00:18 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-spring-boot-starter</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
|
</dependency>
|
2025-05-20 08:59:41 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
[#2845] Bump Spring boot to 4.x (#2941)
Notes:
1. (!) Eclipselink shall be migrated to 5.0 (in 4.0.8 there are incompatible classes, e.g EJBQueryImpl doesn't implement some newer methods). In the moment is with beta (5.0.0-B12) - JUST for testing!
2. (!) Ethlo plugin doesn't work with Eclipselink 5.0, it builds with Eclipselink 4.0.8 (could be a problem)
3. Dependencies - new starters, test starters changes, some dependencies refactoring
4. Auto-configs split - package changes, some properties classes changes
5. Spring nullable org.springframework.lang.Nullable/NonNull are depecated and replaced with jspcify -> org.jspecify.annotations.Nullable/NonNull (NullMarked)
6. Lombok config - adding lombok.addNullAnnotations=jspecify - to do not mess annotations
7. Distributed lock table changes - SP_LOCK table db migration
8. Spring Retry replaced with Spring Core Retry - does repace retry in hawkbit
9. Specifications -> added Update/Delete(/Predicate) Specifications and JpaSpecificationExecutor changed
10. HawkbitBaseRepositoryFactoryBean modified to register properly
11. Jackson - 2 -> 3, package migrations, finals are not deserialized by default(enable finals deserialization, consider make non-final), too ‘smart’ tries to set complex objects instead of using non args constructor (-> @JsonIgnore), some other default configs made
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
2026-04-14 11:31:41 +03:00
|
|
|
<artifactId>spring-boot-starter-security-oauth2-client</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
2025-05-20 08:59:41 +02:00
|
|
|
</dependency>
|
2025-07-28 15:07:25 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
2023-12-04 15:00:18 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<defaultGoal>spring-boot:run</defaultGoal>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2025-07-28 15:07:25 +02:00
|
|
|
<configuration>
|
|
|
|
|
<skip>false</skip>
|
2025-11-17 12:45:02 +02:00
|
|
|
<finalName>hawkbit-ui</finalName>
|
2025-11-17 09:03:27 +02:00
|
|
|
<mainClass>org.eclipse.hawkbit.ui.HawkbitUiApp</mainClass>
|
2025-07-28 15:07:25 +02:00
|
|
|
</configuration>
|
2023-12-04 15:00:18 +02:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-maven-plugin</artifactId>
|
|
|
|
|
<version>${vaadin.version}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
2025-07-01 12:11:39 +03:00
|
|
|
<goal>prepare-frontend</goal>
|
2023-12-04 15:00:18 +02:00
|
|
|
<goal>build-frontend</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
2025-01-29 13:44:31 +02:00
|
|
|
<configuration>
|
|
|
|
|
<forceProductionBuild>true</forceProductionBuild>
|
|
|
|
|
<frontendHotdeploy>false</frontendHotdeploy>
|
|
|
|
|
</configuration>
|
2023-12-04 15:00:18 +02:00
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|