You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.1 KiB
59 lines
2.1 KiB
<?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> |
|
<groupId>apelet</groupId> |
|
<artifactId>uaa</artifactId> |
|
<version>1.0.0</version> |
|
</parent> |
|
<modelVersion>4.0.0</modelVersion> |
|
|
|
<artifactId>uaa-auth</artifactId> |
|
<version>1.0.0</version> |
|
<name>uaa-auth</name> |
|
<packaging>jar</packaging> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>apelet</groupId> |
|
<artifactId>common-core</artifactId> |
|
<version>1.0.0</version> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.cloud</groupId> |
|
<artifactId>spring-cloud-starter-oauth2</artifactId> |
|
<version>2.2.5.RELEASE</version> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.springframework.security.oauth</groupId> |
|
<artifactId>spring-security-oauth2</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<!-- 2.3.3 之前的版本和redis不兼容 --> |
|
<dependency> |
|
<groupId>org.springframework.security.oauth</groupId> |
|
<artifactId>spring-security-oauth2</artifactId> |
|
<version>2.3.8.RELEASE</version> |
|
</dependency> |
|
<!-- redis 分布式session --> |
|
<dependency> |
|
<groupId>org.springframework.session</groupId> |
|
<artifactId>spring-session-data-redis</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-starter-data-redis</artifactId> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-maven-plugin</artifactId> |
|
<version>${spring-boot.version}</version> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</project> |