<?xml version="1.0" encoding="UTF-8"?>
<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>ch.admin.bit.jeap</groupId>
    	<artifactId>jeap-spring-boot-starters</artifactId>
        <version>23.5.2</version>
    </parent>

    <artifactId>jeap-spring-boot-security-client-starter-it</artifactId>
    <name>${project.groupId}:${project.artifactId}</name>
    <description>Integration tests of jeap-spring-boot-security-starter for the WebMvc stack.</description>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
        </dependency>
        <dependency>
            <groupId>ch.admin.bit.jeap</groupId>
            <artifactId>jeap-spring-boot-security-client-starter</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>ch.admin.bit.jeap</groupId>
            <artifactId>jeap-spring-boot-security-starter-it</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <!-- For the test setup here we need to be just a client -->
                    <groupId>ch.admin.bit.jeap</groupId>
                    <artifactId>spring-boot-starter-security-oauth2-resource-server</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>

</project>
