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-21 16:28:22 +02:00
|
|
|
<version>${revision}</version>
|
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-01-07 08:47:21 +02:00
|
|
|
<vaadin.version>25.0.2</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
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>Vaadin Repo</id>
|
|
|
|
|
<url>https://maven.vaadin.com/vaadin-addons</url>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
<artifactId>spring-boot-starter-oauth2-client</artifactId>
|
|
|
|
|
</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>
|