2016-04-28 16:23:07 +02:00
|
|
|
<!--
|
|
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2016-04-28 16:23:07 +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-04-28 16:23:07 +02:00
|
|
|
|
|
|
|
|
-->
|
2016-04-20 17:33:03 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
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>
|
2018-05-24 16:10:01 +02:00
|
|
|
<artifactId>hawkbit-rest-parent</artifactId>
|
2023-11-16 17:23:01 +02:00
|
|
|
<version>${revision}</version>
|
2016-04-20 17:33:03 +02:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>hawkbit-rest-core</artifactId>
|
2018-05-24 16:10:01 +02:00
|
|
|
<name>hawkBit :: REST :: Core</name>
|
2016-04-20 17:33:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2016-05-31 20:50:22 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
2017-07-19 12:43:07 +02:00
|
|
|
<artifactId>hawkbit-core</artifactId>
|
2016-05-31 20:50:22 +02:00
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
2016-04-20 17:33:03 +02:00
|
|
|
<dependency>
|
2017-07-19 12:43:07 +02:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
2016-04-20 17:33:03 +02:00
|
|
|
</dependency>
|
2017-07-19 12:43:07 +02:00
|
|
|
<dependency>
|
2023-03-28 07:16:25 +02:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2017-07-19 12:43:07 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.hateoas</groupId>
|
|
|
|
|
<artifactId>spring-hateoas</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-commons</artifactId>
|
2019-01-31 07:29:27 +01:00
|
|
|
</dependency>
|
2016-05-31 10:56:10 +02:00
|
|
|
<dependency>
|
2019-01-31 07:29:27 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-json</artifactId>
|
2016-05-31 10:56:10 +02:00
|
|
|
</dependency>
|
2023-09-13 10:40:31 +03:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springdoc</groupId>
|
2024-01-26 15:41:43 +02:00
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
2023-09-13 10:40:31 +03:00
|
|
|
</dependency>
|
2016-04-20 17:33:03 +02:00
|
|
|
<dependency>
|
2024-01-20 15:57:17 +02:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2016-04-20 17:33:03 +02:00
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Test -->
|
2017-07-19 12:43:07 +02:00
|
|
|
<dependency>
|
2016-05-31 08:51:49 +02:00
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-repository-test</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<scope>test</scope>
|
2017-07-19 12:43:07 +02:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-repository-jpa</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-04-20 17:33:03 +02:00
|
|
|
<dependency>
|
2018-10-25 18:18:38 +02:00
|
|
|
<groupId>io.qameta.allure</groupId>
|
2021-02-12 08:22:26 +01:00
|
|
|
<artifactId>allure-junit5</artifactId>
|
2016-04-20 17:33:03 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2017-07-19 12:43:07 +02:00
|
|
|
<dependency>
|
2016-04-20 17:55:54 +02:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2016-04-20 17:33:03 +02:00
|
|
|
</dependencies>
|
2016-04-20 17:55:54 +02:00
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
|
</goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
2016-04-20 17:33:03 +02:00
|
|
|
</project>
|