2016-08-05 13:19:29 +02:00
|
|
|
<!--
|
|
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2016-08-05 13:19:29 +02:00
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
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
|
2016-08-05 13:19:29 +02:00
|
|
|
|
|
|
|
|
-->
|
2024-11-05 09:32:03 +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">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-repository</artifactId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
2024-11-12 15:09:03 +02:00
|
|
|
|
2024-11-05 09:32:03 +02:00
|
|
|
<artifactId>hawkbit-repository-api</artifactId>
|
|
|
|
|
<name>hawkBit :: Repository :: API</name>
|
2016-08-03 09:08:03 +02:00
|
|
|
|
2024-11-05 09:32:03 +02:00
|
|
|
<dependencies>
|
2024-11-12 09:40:44 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-artifact-api</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2024-11-05 09:32:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-security-core</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2024-11-12 09:40:44 +02:00
|
|
|
|
2024-11-17 15:03:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.validation</groupId>
|
|
|
|
|
<artifactId>jakarta.validation-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
</dependency>
|
2024-11-05 09:32:03 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.cronutils</groupId>
|
|
|
|
|
<artifactId>cron-utils</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
|
</dependency>
|
2016-08-05 13:04:56 +02:00
|
|
|
|
2024-11-05 09:32:03 +02:00
|
|
|
<!-- TEST -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.github.classgraph</groupId>
|
|
|
|
|
<artifactId>classgraph</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2025-08-01 19:24:49 +03:00
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<doclint>syntax</doclint>
|
|
|
|
|
<!-- javadoc fail on TargetTypeManagement.Create because of lombok CreateBuildaer-->
|
|
|
|
|
<failOnError>false</failOnError>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2024-11-08 16:25:19 +02:00
|
|
|
</project>
|