2019-07-27 23:03:27 +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>cm-cloud</artifactId>
|
|
|
|
<groupId>com.cm</groupId>
|
2019-10-26 15:55:49 +08:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2019-07-27 23:03:27 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<description>单点登录客户端使用的通用jar包</description>
|
|
|
|
|
|
|
|
<artifactId>cloud-common-plugin-oauth</artifactId>
|
2019-10-26 15:55:49 +08:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2019-07-27 23:03:27 +08:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-common-plugin</artifactId>
|
2019-10-26 15:55:49 +08:00
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2019-11-12 17:28:07 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.security.oauth.boot</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.security.oauth.boot</groupId>
|
|
|
|
<artifactId>spring-security-oauth2-autoconfigure</artifactId>
|
2019-11-13 11:23:31 +08:00
|
|
|
<version>${spring-boot.oauth.autoconfigure.version}</version>
|
2019-07-27 23:03:27 +08:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|