2021-09-15 11:17:31 +08: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">
|
|
|
|
<parent>
|
|
|
|
<artifactId>wg-basic</artifactId>
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2021-09-15 23:41:29 +08:00
|
|
|
<artifactId>login-oauth2-server</artifactId>
|
2021-09-15 11:17:31 +08:00
|
|
|
<description>单点登录</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
<artifactId>login-base</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2021-09-15 23:41:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
<artifactId>service-menu</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2021-10-20 00:40:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>ink.wgink</groupId>
|
|
|
|
<artifactId>service-role</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
</dependency>
|
2021-09-17 12:14:41 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
2021-09-18 15:37:51 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-09-17 12:14:41 +08:00
|
|
|
</dependency>
|
2021-09-15 23:41:29 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-jwt</artifactId>
|
|
|
|
<version>1.0.9.RELEASE</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security.oauth.boot</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId>
|
2022-05-12 16:05:42 +08:00
|
|
|
<version>2.5.13</version>
|
2021-09-17 12:14:41 +08:00
|
|
|
<exclusions>
|
2021-09-18 15:37:51 +08:00
|
|
|
<exclusion>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</exclusion>
|
2021-09-17 12:14:41 +08:00
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.security</groupId>
|
|
|
|
<artifactId>spring-security-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-09-15 23:41:29 +08:00
|
|
|
</dependency>
|
2021-09-15 11:17:31 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|