2020-09-01 00:30:35 +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>
|
2022-10-31 01:00:01 +08:00
|
|
|
<artifactId>youlai-common</artifactId>
|
2020-09-01 00:30:35 +08:00
|
|
|
<groupId>com.youlai</groupId>
|
2022-07-06 23:39:52 +08:00
|
|
|
<version>2.0.1</version>
|
2020-09-01 00:30:35 +08:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
2022-10-31 01:00:01 +08:00
|
|
|
<artifactId>common-security</artifactId>
|
2020-10-31 23:47:11 +08:00
|
|
|
|
2022-10-31 01:00:01 +08:00
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
</properties>
|
2021-03-13 20:48:18 +08:00
|
|
|
|
2022-10-31 01:00:01 +08:00
|
|
|
<dependencies>
|
2021-03-13 20:48:18 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.youlai</groupId>
|
2022-10-31 01:00:01 +08:00
|
|
|
<artifactId>common-redis</artifactId>
|
2021-03-13 20:48:18 +08:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-30 15:05:51 +08:00
|
|
|
<dependency>
|
2022-10-31 01:00:01 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
2020-09-30 15:05:51 +08:00
|
|
|
</dependency>
|
2021-01-27 16:45:19 +08:00
|
|
|
|
2020-09-04 19:04:06 +08:00
|
|
|
<dependency>
|
2022-10-31 01:00:01 +08:00
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
2020-10-06 12:20:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2022-10-31 01:00:01 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<optional>true</optional>
|
2020-10-06 12:20:15 +08:00
|
|
|
</dependency>
|
|
|
|
|
2022-10-31 01:00:01 +08:00
|
|
|
<!-- OAuth2 Resource Server -->
|
2020-10-06 12:20:15 +08:00
|
|
|
<dependency>
|
2022-10-31 01:00:01 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
|
2021-03-12 01:18:30 +08:00
|
|
|
</dependency>
|
|
|
|
|
2020-09-01 00:30:35 +08:00
|
|
|
</dependencies>
|
2022-10-31 01:00:01 +08:00
|
|
|
|
|
|
|
</project>
|