2020-10-20 04:42:57 -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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-security-legacy-oidc</artifactId>
|
|
|
|
<name>spring-security-legacy-oidc</name>
|
|
|
|
<packaging>war</packaging>
|
|
|
|
<description>Spring OpenID Connect sample project</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2023-10-28 03:49:47 -04:00
|
|
|
<artifactId>spring-security-modules</artifactId>
|
2020-10-20 04:42:57 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2022-03-13 05:18:44 -04:00
|
|
|
|
|
|
|
<dependencyManagement>
|
2022-02-22 11:23:39 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-bom</artifactId>
|
|
|
|
<version>${log4j2.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2020-10-20 04:42:57 -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-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security.oauth</groupId>
|
|
|
|
<artifactId>spring-security-oauth2</artifactId>
|
|
|
|
<version>${spring-security-oauth2.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-jwt</artifactId>
|
|
|
|
<version>${spring-security-jwt.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth0</groupId>
|
|
|
|
<artifactId>jwks-rsa</artifactId>
|
|
|
|
<version>${jwks-rsa.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<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>
|
2021-06-25 15:50:37 -04:00
|
|
|
<spring-boot.version>2.4.7</spring-boot.version>
|
2022-03-13 05:18:44 -04:00
|
|
|
<log4j2.version>2.17.1</log4j2.version>
|
2020-10-20 04:42:57 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-17 10:52:27 -04:00
|
|
|
</project>
|