2016-01-21 13:18:55 +01:00
|
|
|
<!--
|
|
|
|
|
|
2023-09-14 11:03:20 +03:00
|
|
|
Copyright (c) 2015 Bosch Software Innovations GmbH and others
|
2016-01-21 13:18:55 +01: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-01-21 13:18:55 +01: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>
|
|
|
|
|
<artifactId>hawkbit-parent</artifactId>
|
2023-11-16 17:23:01 +02:00
|
|
|
<version>${revision}</version>
|
2016-01-21 13:18:55 +01:00
|
|
|
</parent>
|
|
|
|
|
<artifactId>hawkbit-security-core</artifactId>
|
|
|
|
|
<name>hawkBit :: Core Security</name>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2016-05-25 17:43:57 +02:00
|
|
|
<dependency>
|
2016-01-21 13:18:55 +01:00
|
|
|
<groupId>org.eclipse.hawkbit</groupId>
|
|
|
|
|
<artifactId>hawkbit-core</artifactId>
|
|
|
|
|
<version>${project.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2024-01-20 15:57:17 +02:00
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
2016-11-10 14:10:33 +01:00
|
|
|
<scope>provided</scope>
|
2016-01-21 13:18:55 +01:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-commons</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
|
</dependency>
|
2020-01-14 13:09:13 +01:00
|
|
|
<dependency>
|
2020-01-14 15:25:43 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
|
|
|
|
|
</dependency>
|
2020-01-14 13:09:13 +01:00
|
|
|
<dependency>
|
2020-01-14 15:25:43 +01:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-oauth2-client</artifactId>
|
2020-01-14 13:09:13 +01:00
|
|
|
</dependency>
|
2016-01-21 13:18:55 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Test -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<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-01-21 13:18:55 +01:00
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2024-02-02 22:21:46 +02:00
|
|
|
</project>
|