2016-02-13 22:25:31 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2017-05-12 20:32:54 +02:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 12:34:54 +05:30
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2016-03-03 12:32:44 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2016-02-13 22:25:31 +02:00
|
|
|
|
2017-02-02 14:00:34 +02:00
|
|
|
<artifactId>spring-security-openid</artifactId>
|
2016-03-03 12:32:44 +02:00
|
|
|
<packaging>war</packaging>
|
2017-02-02 14:00:34 +02:00
|
|
|
<name>spring-security-openid</name>
|
2016-03-03 12:32:44 +02:00
|
|
|
<description>Spring OpenID sample project</description>
|
2016-02-13 22:25:31 +02:00
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<parent>
|
2018-08-05 23:17:35 +05:30
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2018-04-26 18:07:47 +05:30
|
|
|
</parent>
|
2016-02-13 22:25:31 +02:00
|
|
|
|
2016-03-03 12:32:44 +02: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 22:25:31 +02:00
|
|
|
|
2016-03-03 12:32:44 +02:00
|
|
|
<dependency>
|
2016-02-13 22:25:31 +02:00
|
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
|
|
<artifactId>spring-security-oauth2</artifactId>
|
2018-04-26 12:20:35 +05:30
|
|
|
<version>${spring-security-oauth2.version}</version>
|
2016-02-13 22:25:31 +02:00
|
|
|
</dependency>
|
|
|
|
|
2016-03-03 12:32:44 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-jwt</artifactId>
|
2018-04-26 12:20:35 +05:30
|
|
|
<version>${spring-security-jwt.version}</version>
|
2016-03-03 12:32:44 +02:00
|
|
|
</dependency>
|
2018-04-26 18:07:47 +05:30
|
|
|
|
2018-02-20 18:34:11 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
<artifactId>jwks-rsa</artifactId>
|
2018-04-26 12:20:35 +05:30
|
|
|
<version>${jwks-rsa.version}</version>
|
2018-02-20 18:34:11 +02:00
|
|
|
</dependency>
|
2016-03-03 12:32:44 +02:00
|
|
|
</dependencies>
|
|
|
|
|
2018-04-26 18:07:47 +05:30
|
|
|
<properties>
|
2018-04-26 12:20:35 +05:30
|
|
|
<spring-security-oauth2.version>2.2.1.RELEASE</spring-security-oauth2.version>
|
2018-04-26 18:07:47 +05:30
|
|
|
<spring-security-jwt.version>1.0.9.RELEASE</spring-security-jwt.version>
|
|
|
|
<jwks-rsa.version>0.3.0</jwks-rsa.version>
|
2018-04-26 12:20:35 +05:30
|
|
|
</properties>
|
2018-01-17 20:14:37 +02:00
|
|
|
|
2016-02-13 22:25:31 +02:00
|
|
|
</project>
|