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>
|
|
|
|
|
|
|
|
|
|
<artifactId>hawkbit-simple-ui</artifactId>
|
2023-12-21 16:28:22 +02:00
|
|
|
<version>${revision}</version>
|
2023-12-04 15:00:18 +02:00
|
|
|
<packaging>jar</packaging>
|
2024-11-12 15:09:03 +02:00
|
|
|
<name>hawkBit :: Simple UI</name>
|
2023-12-04 15:00:18 +02:00
|
|
|
|
|
|
|
|
<properties>
|
2024-03-15 13:09:46 +02:00
|
|
|
<vaadin.version>24.3.7</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>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-dev</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</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>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<defaultGoal>spring-boot:run</defaultGoal>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.vaadin</groupId>
|
|
|
|
|
<artifactId>vaadin-maven-plugin</artifactId>
|
|
|
|
|
<version>${vaadin.version}</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>build-frontend</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
<phase>compile</phase>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|