2023-03-16 14:28:37 -04:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2023-05-24 10:07:51 -04:00
|
|
|
|
2023-03-16 14:28:37 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-security-saml2</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<name>spring-security-saml2</name>
|
2023-05-24 10:07:51 -04:00
|
|
|
|
2023-03-16 14:28:37 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>shib-build-releases</id>
|
|
|
|
<name>Shibboleth Build Releases Repository</name>
|
|
|
|
<url>https://build.shibboleth.net/nexus/content/repositories/releases/</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2023-05-24 10:07:51 -04:00
|
|
|
|
2023-03-16 14:28:37 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-3</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../../parent-boot-3</relativePath>
|
|
|
|
</parent>
|
2023-05-24 10:07:51 -04:00
|
|
|
|
2023-03-16 14:28:37 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf.extras</groupId>
|
|
|
|
<artifactId>thymeleaf-extras-springsecurity6</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opensaml</groupId>
|
|
|
|
<artifactId>opensaml-core</artifactId>
|
|
|
|
<version>${opensaml.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opensaml</groupId>
|
|
|
|
<artifactId>opensaml-saml-impl</artifactId>
|
|
|
|
<version>${opensaml.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.opensaml</groupId>
|
|
|
|
<artifactId>opensaml-saml-api</artifactId>
|
|
|
|
<version>${opensaml.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-saml2-service-provider</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2023-05-24 10:07:51 -04:00
|
|
|
|
2023-03-16 14:28:37 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2023-05-24 10:07:51 -04:00
|
|
|
|
2023-03-16 14:28:37 -04:00
|
|
|
<properties>
|
|
|
|
<java.version>17</java.version>
|
|
|
|
<opensaml.version>4.1.1</opensaml.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
</project>
|