<?xml version="1.0" encoding="UTF-8"?>
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
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>
|
<parent>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-parent</artifactId>
|
<version>1.1.3</version>
|
<relativePath>../cloud-server-parent/pom.xml</relativePath>
|
</parent>
|
|
<artifactId>mb-cloud-auth</artifactId>
|
<packaging>jar</packaging>
|
<name>授权中心</name>
|
<version>1.1.3</version>
|
|
<description>mb cloud 认证授权中心,基于 spring security oAuth2</description>
|
|
<dependencies>
|
<!--缓存操作-->
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-data</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-api</artifactId>
|
</dependency>
|
|
<!--freemarker-->
|
<dependency>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-starter-freemarker</artifactId>
|
</dependency>
|
<!--安全模块 -->
|
<dependency>
|
<groupId>org.springframework.cloud</groupId>
|
<artifactId>spring-cloud-starter-security</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.cloud</groupId>
|
<artifactId>spring-cloud-starter-oauth2</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.security.oauth</groupId>
|
<artifactId>spring-security-oauth2</artifactId>
|
<version>2.3.6.RELEASE</version>
|
</dependency>
|
<!-- redis依赖 -->
|
<dependency>
|
<groupId>redis.clients</groupId>
|
<artifactId>jedis</artifactId>
|
<version>2.9.0</version>
|
</dependency>
|
<!-- jjwt依赖 -->
|
<dependency>
|
<groupId>io.jsonwebtoken</groupId>
|
<artifactId>jjwt</artifactId>
|
<version>0.9.0</version>
|
</dependency>
|
|
|
<!--更改mybatis版本-->
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>3.5.6</version>
|
</dependency>
|
<!-- HttpClient-->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.2</version>
|
</dependency>
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-idempotent</artifactId>
|
<version>1.2.1</version>
|
</dependency>
|
|
<dependency> <!--swagger2-->
|
<groupId>io.springfox</groupId>
|
<artifactId>springfox-swagger2</artifactId>
|
<version>2.9.2</version>
|
<exclusions>
|
<exclusion>
|
<groupId>io.swagge</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
</exclusion>
|
<exclusion>
|
<groupId>io.swagge</groupId>
|
<artifactId>swagger-models</artifactId>
|
</exclusion>
|
</exclusions>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-annotations</artifactId>
|
<version>1.5.22</version>
|
</dependency>
|
<dependency>
|
<groupId>io.swagger</groupId>
|
<artifactId>swagger-models</artifactId>
|
<version>1.5.22</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<version>2.3.4.RELEASE</version>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
</plugins>
|
</build>
|
|
<repositories>
|
<repository>
|
<id>magic-beans-thirdparty</id>
|
<url>http://maven.magic-beans.cn/nexus/content/repositories/thirdparty/</url>
|
</repository>
|
<repository>
|
<id>magic-beans-releases</id>
|
<url>http://maven.magic-beans.cn/nexus/content/repositories/releases/</url>
|
</repository>
|
<repository>
|
<id>aliyun</id>
|
<name>aliyun</name>
|
<url>https://maven.aliyun.com/repository/public</url>
|
</repository>
|
</repositories>
|
</project>
|