<?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>dsh-cloud-parent</artifactId>
|
<version>1.1.3</version>
|
</parent>
|
|
<artifactId>mb-cloud-upms</artifactId>
|
<packaging>jar</packaging>
|
<version>${parent.version}</version>
|
<name>微服务一体化管理中心</name>
|
<description>mb-cloud 通用用户权限管理系统业务处理模块</description>
|
<dependencies>
|
<!--日志处理-->
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-log</artifactId>
|
</dependency>
|
<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>
|
<dependency>
|
<groupId>cn.mb.cloud</groupId>
|
<artifactId>mb-cloud-common-job</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.flywaydb</groupId>
|
<artifactId>flyway-core</artifactId>
|
</dependency>
|
|
|
<!--文件上传组件-->
|
<dependency>
|
<groupId>commons-fileupload</groupId>
|
<artifactId>commons-fileupload</artifactId>
|
<version>1.3.1</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-io</groupId>
|
<artifactId>commons-io</artifactId>
|
<version>2.5</version>
|
</dependency>
|
<!--读取excel文件-->
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi</artifactId>
|
<version>3.17</version>
|
</dependency>
|
<dependency>
|
<groupId>org.apache.poi</groupId>
|
<artifactId>poi-ooxml</artifactId>
|
<version>3.17</version>
|
</dependency>
|
<dependency>
|
<groupId>commons-beanutils</groupId>
|
<artifactId>commons-beanutils</artifactId>
|
<version>1.9.2</version>
|
</dependency>
|
|
|
<!-- http -->
|
<dependency>
|
<groupId>org.apache.httpcomponents</groupId>
|
<artifactId>httpclient</artifactId>
|
<version>4.5.3</version>
|
</dependency>
|
|
<!-- 极光推送 -->
|
<dependency>
|
<groupId>cn.jpush.api</groupId>
|
<artifactId>jpush-client</artifactId>
|
<version>3.3.8</version>
|
</dependency>
|
|
<dependency>
|
<groupId>cn.jpush.api</groupId>
|
<artifactId>jiguang-common</artifactId>
|
<version>1.1.3</version>
|
</dependency>
|
|
<dependency>
|
<groupId>org.springframework.cloud</groupId>
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
</dependency>
|
<!--更改mybatis版本-->
|
<dependency>
|
<groupId>org.mybatis</groupId>
|
<artifactId>mybatis</artifactId>
|
<version>3.5.6</version>
|
</dependency>
|
<!--<dependency>
|
<groupId>com.spring4all</groupId>
|
<artifactId>swagger-spring-boot-starter</artifactId>
|
<version>1.9.1.RELEASE</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>
|
<dependency>
|
<groupId>com.qcloud</groupId>
|
<artifactId>cos_api</artifactId>
|
<version>5.6.89</version>
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
<plugins>
|
<plugin>
|
<groupId>org.springframework.boot</groupId>
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
<executions>
|
<execution>
|
<goals>
|
<goal>repackage</goal>
|
</goals>
|
</execution>
|
</executions>
|
</plugin>
|
<plugin>
|
<groupId>com.spotify</groupId>
|
<artifactId>docker-maven-plugin</artifactId>
|
</plugin>
|
</plugins>
|
</build>
|
|
<repositories>
|
<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>
|