2016-02-13 15:25:31 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 14:32:54 -04: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">
|
2016-03-03 05:32:44 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-02-13 15:25:31 -05:00
|
|
|
|
2016-03-06 04:49:59 -05:00
|
|
|
<groupId>com.baeldung</groupId>
|
2017-02-02 07:00:34 -05:00
|
|
|
<artifactId>spring-security-openid</artifactId>
|
2016-03-03 05:32:44 -05:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<packaging>war</packaging>
|
2016-02-13 15:25:31 -05:00
|
|
|
|
2017-02-02 07:00:34 -05:00
|
|
|
<name>spring-security-openid</name>
|
2016-03-03 05:32:44 -05:00
|
|
|
<description>Spring OpenID sample project</description>
|
2016-02-13 15:25:31 -05:00
|
|
|
|
2018-01-17 13:14:37 -05:00
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.0.0.M7</version>
|
|
|
|
<relativePath />
|
|
|
|
</parent>
|
2016-02-13 15:25:31 -05:00
|
|
|
|
2016-03-03 05:32:44 -05: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-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</dependency>
|
2016-02-13 15:25:31 -05:00
|
|
|
|
2016-03-03 05:32:44 -05:00
|
|
|
<dependency>
|
2016-02-13 15:25:31 -05:00
|
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
|
|
<artifactId>spring-security-oauth2</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${spring-security-oauth2.version}</version>
|
2016-02-13 15:25:31 -05:00
|
|
|
</dependency>
|
|
|
|
|
2016-03-03 05:32:44 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-jwt</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${spring-security-jwt.version}</version>
|
2016-03-03 05:32:44 -05:00
|
|
|
</dependency>
|
2018-01-17 13:14:37 -05:00
|
|
|
|
2018-02-20 11:34:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
<artifactId>jwks-rsa</artifactId>
|
2018-04-26 02:50:35 -04:00
|
|
|
<version>${jwks-rsa.version}</version>
|
2018-02-20 11:34:11 -05:00
|
|
|
</dependency>
|
2016-03-03 05:32:44 -05:00
|
|
|
</dependencies>
|
|
|
|
|
2018-01-17 13:14:37 -05:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<name>Spring Milestones</name>
|
|
|
|
<url>https://repo.spring.io/milestone</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>spring-milestones</id>
|
|
|
|
<name>Spring Milestones</name>
|
|
|
|
<url>https://repo.spring.io/milestone</url>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>false</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
2018-04-26 02:50:35 -04:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<spring-security-oauth2.version>2.2.1.RELEASE</spring-security-oauth2.version>
|
|
|
|
<spring-security-jwt.version>1.0.9.RELEASE</spring-security-jwt.version>
|
|
|
|
<jwks-rsa.version>0.3.0</jwks-rsa.version>
|
|
|
|
</properties>
|
2018-01-17 13:14:37 -05:00
|
|
|
|
2016-02-13 15:25:31 -05:00
|
|
|
</project>
|