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"
|
2018-07-12 03:04:54 -04:00
|
|
|
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>
|
2017-02-02 07:00:34 -05:00
|
|
|
<artifactId>spring-security-openid</artifactId>
|
|
|
|
<name>spring-security-openid</name>
|
2019-02-09 15:17:19 -05:00
|
|
|
<packaging>war</packaging>
|
2016-03-03 05:32:44 -05:00
|
|
|
<description>Spring OpenID sample project</description>
|
2016-02-13 15:25:31 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<parent>
|
2018-12-11 09:17:29 -05:00
|
|
|
<artifactId>parent-boot-2</artifactId>
|
2018-08-05 13:47:35 -04:00
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2018-12-11 09:17:29 -05:00
|
|
|
<relativePath>../parent-boot-2</relativePath>
|
2018-04-26 08:37:47 -04:00
|
|
|
</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-04-26 08:37:47 -04: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-04-26 08:37:47 -04:00
|
|
|
<properties>
|
2018-04-26 02:50:35 -04:00
|
|
|
<spring-security-oauth2.version>2.2.1.RELEASE</spring-security-oauth2.version>
|
2018-04-26 08:37:47 -04:00
|
|
|
<spring-security-jwt.version>1.0.9.RELEASE</spring-security-jwt.version>
|
|
|
|
<jwks-rsa.version>0.3.0</jwks-rsa.version>
|
2018-04-26 02:50:35 -04:00
|
|
|
</properties>
|
2018-01-17 13:14:37 -05:00
|
|
|
|
2016-02-13 15:25:31 -05:00
|
|
|
</project>
|