<?xml version="1.0" encoding="UTF-8"?>
<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>digital.nedra.commons.starter</groupId>
        <artifactId>ndr-starters</artifactId>
        <version>2.1.3</version>
    </parent>

    <artifactId>security-common</artifactId>

    <name>security-common</name>
    <description>
        Spring Boot starter with common settings for security-oauth2-bearer-starter and keycloak-session-starter.
    </description>
    <url>https://commons.nedra.digital/java</url>

    <dependencies>
        <dependency>
            <groupId>digital.nedra.commons.starter</groupId>
            <artifactId>common-properties</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-config</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-web</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

</project>