2020-11-28 12:52:57 +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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.1.2.RELEASE</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>service-user-center</artifactId>
|
|
|
|
<version>2.0.2.RELEASE</version>
|
|
|
|
<name>service-user-center</name>
|
|
|
|
<description>统一用户管理系统</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
<durid.version>1.0.31</durid.version>
|
|
|
|
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
|
|
|
|
<spring-mybatis.version>1.3.2</spring-mybatis.version>
|
|
|
|
<spring-jdbc.version>5.1.4.RELEASE</spring-jdbc.version>
|
|
|
|
<mysql.version>8.0.16</mysql.version>
|
|
|
|
<druid.version>1.1.9</druid.version>
|
2021-07-16 18:11:21 +08:00
|
|
|
<cm-cloud.version>1.0.2-SNAPSHOT</cm-cloud.version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-jdbc</artifactId>
|
|
|
|
<version>${spring-jdbc.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
<version>${spring-mybatis.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-common-plugin</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-common-plugin-dynamic</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-security</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-manager-sms</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-03-04 18:32:05 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-common-websocket</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2021-03-04 18:32:05 +08:00
|
|
|
</dependency>
|
|
|
|
|
2020-11-28 12:52:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-common-wechat</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
|
|
|
<artifactId>cloud-common-dingding</artifactId>
|
2021-07-18 22:27:38 +08:00
|
|
|
<version>1.0.2-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.16</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>com.cm</groupId>-->
|
|
|
|
<!-- <artifactId>cloud-common-freemarker</artifactId>-->
|
|
|
|
<!-- <version>1.0.1-SNAPSHOT</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>com.cm</groupId>-->
|
|
|
|
<!-- <artifactId>cloud-common-bigdata</artifactId>-->
|
|
|
|
<!-- <version>1.0.1-SNAPSHOT</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
|
|
|
<!-- 作为服务端使用 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.cm</groupId>
|
2021-08-11 23:16:19 +08:00
|
|
|
<artifactId>cloud-central-control</artifactId>
|
|
|
|
<version>1.0.1-SNAPSHOT</version>
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependency>
|
|
|
|
|
2021-08-11 23:16:19 +08:00
|
|
|
|
|
|
|
<!-- 作为客户端使用 -->
|
|
|
|
<!-- <dependency>-->
|
|
|
|
<!-- <groupId>com.cm</groupId>-->
|
|
|
|
<!-- <artifactId>cloud-central-control-client</artifactId>-->
|
|
|
|
<!-- <version>1.0.2-SNAPSHOT</version>-->
|
|
|
|
<!-- </dependency>-->
|
|
|
|
|
2020-11-28 12:52:57 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|