2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-17 10:52:27 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-10-31 21:43:47 -04:00
|
|
|
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>
|
2022-08-19 02:34:58 -04:00
|
|
|
<artifactId>spring-security-oauth2</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2022-06-30 10:37:18 -04:00
|
|
|
<name>spring-security-oauth2</name>
|
2019-10-31 21:43:47 -04:00
|
|
|
<packaging>jar</packaging>
|
|
|
|
<description>spring 5 security oauth sample project</description>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>parent-boot-2</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2020-12-25 12:13:12 -05:00
|
|
|
<relativePath>../../parent-boot-2</relativePath>
|
2019-10-31 21:43:47 -04:00
|
|
|
</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>
|
2019-10-31 21:43:47 -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-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.thymeleaf.extras</groupId>
|
|
|
|
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
|
|
|
|
</dependency>
|
2020-09-16 22:24:28 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-jersey</artifactId>
|
|
|
|
</dependency>
|
2019-10-31 21:43:47 -04:00
|
|
|
<!-- oauth2 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security.oauth.boot</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId>
|
2022-10-18 14:41:48 -04:00
|
|
|
<version>${spring-security-oauth2-autoconfigure.version}</version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-jose</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2020-09-16 22:24:28 -04:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<properties>
|
2022-10-18 14:41:48 -04:00
|
|
|
<spring-security-oauth2-autoconfigure.version>2.6.8</spring-security-oauth2-autoconfigure.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
<start-class>com.baeldung.oauth2.SpringOAuthApplication</start-class>
|
2022-03-13 05:18:44 -04:00
|
|
|
<log4j2.version>2.17.1</log4j2.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-17 10:52:27 -04:00
|
|
|
</project>
|