You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
6.0 KiB
152 lines
6.0 KiB
3 years ago
|
<?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>
|
||
|
<groupId>com.vdenotaris.spring</groupId>
|
||
|
<artifactId>fr-sp-saml</artifactId>
|
||
|
<version>1.0</version>
|
||
|
<!-- <packaging>jar</packaging>-->
|
||
|
<packaging>war</packaging>
|
||
|
<!-- Project description -->
|
||
|
<name>Spring Boot sample SAML 2.0 Service Provider</name>
|
||
|
<description>A sample SAML 2.0 Service Provider built on Spring Boot.</description>
|
||
|
<url>https://github.com/vdenotaris/spring-boot-security-saml-sample</url>
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>vdenotaris</id>
|
||
|
<name>Vincenzo De Notaris</name>
|
||
|
<email>dev@vdenotaris.com</email>
|
||
|
<timezone>CET/CEST</timezone>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
<contributors>
|
||
|
<contributor>
|
||
|
<name>Vladimír Schäfer</name>
|
||
|
</contributor>
|
||
|
<contributor>
|
||
|
<name>Alexey Syrtsev</name>
|
||
|
</contributor>
|
||
|
</contributors>
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>Apache License, Version 2.0</name>
|
||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
<inceptionYear>2021</inceptionYear>
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
|
<start-class>com.vdenotaris.spring.boot.security.saml.web.Application</start-class>
|
||
|
<jackson.version>2.13.0</jackson.version>
|
||
|
<log4j2.version>2.17.0</log4j2.version>
|
||
|
</properties>
|
||
|
<!-- Inherit defaults from Spring Boot -->
|
||
|
<parent>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-parent</artifactId>
|
||
|
<version>2.2.4.RELEASE</version>
|
||
|
<!-- <version>2.6.1</version>-->
|
||
|
<!-- <relativePath/> <!– lookup parent from repository –>-->
|
||
|
</parent>
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>Shibboleth</id>
|
||
|
<name>Shibboleth</name>
|
||
|
<url>https://build.shibboleth.net/nexus/content/repositories/releases/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-logging</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
||
|
<scope>provided</scope>
|
||
|
</dependency>
|
||
|
<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>nz.net.ultraq.thymeleaf</groupId>
|
||
|
<artifactId>thymeleaf-layout-dialect</artifactId>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security.extensions</groupId>
|
||
|
<artifactId>spring-security-saml2-core</artifactId>
|
||
|
<version>1.0.10.RELEASE</version>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>commons-collections</groupId>
|
||
|
<artifactId>commons-collections</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-collections4</artifactId>
|
||
|
<version>4.4</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<scm>
|
||
|
<connection>scm:git:git@github.com:vdenotaris/spring-boot-security-saml-sample.git</connection>
|
||
|
<url>scm:git:git@github.com:vdenotaris/spring-boot-security-saml-sample.git</url>
|
||
|
<developerConnection>scm:git:git@github.com:vdenotaris/spring-boot-security-saml-sample.git</developerConnection>
|
||
|
</scm>
|
||
|
<build>
|
||
|
<finalName>${project.artifactId}</finalName>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>org.jacoco</groupId>
|
||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||
|
<version>0.8.2</version>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>prepare-agent</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
<execution>
|
||
|
<id>report</id>
|
||
|
<phase>prepare-package</phase>
|
||
|
<goals>
|
||
|
<goal>report</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|