|
|
|
|
<?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>
|
|
|
|
|
|
|
|
|
|
<groupId>cc.hiver</groupId>
|
|
|
|
|
<artifactId>hiver-microerp-back</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
|
<module>hiver-core</module>
|
|
|
|
|
<module>hiver-modules</module>
|
|
|
|
|
<module>hiver-admin</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
<encoding>UTF-8</encoding>
|
|
|
|
|
<!-- 依赖包版本 -->
|
|
|
|
|
<spring.boot.version>2.5.14</spring.boot.version>
|
|
|
|
|
<spring.boot.admin.version>2.6.7</spring.boot.admin.version>
|
|
|
|
|
<druid.version>1.2.9</druid.version>
|
|
|
|
|
<jjwt.version>0.9.1</jjwt.version>
|
|
|
|
|
<mysql.connector.version>5.1.49</mysql.connector.version>
|
|
|
|
|
<mybatis.plus.version>3.5.1</mybatis.plus.version>
|
|
|
|
|
<redission.version>3.17.2</redission.version>
|
|
|
|
|
<knife4j.version>2.0.9</knife4j.version>
|
|
|
|
|
<gson.version>2.9.0</gson.version>
|
|
|
|
|
<hutool.version>5.8.1</hutool.version>
|
|
|
|
|
<lombok.version>1.18.24</lombok.version>
|
|
|
|
|
<jasypt.version>3.0.4</jasypt.version>
|
|
|
|
|
<beetl.version>2.9.10</beetl.version>
|
|
|
|
|
<antlr.version>4.8</antlr.version>
|
|
|
|
|
<minio.version>8.3.6</minio.version>
|
|
|
|
|
<qiniu.version>7.9.3</qiniu.version>
|
|
|
|
|
<aliyun.oss.version>3.14.0</aliyun.oss.version>
|
|
|
|
|
<qcloud.cos.version>5.6.68</qcloud.cos.version>
|
|
|
|
|
<tencentcloud.version>3.1.445</tencentcloud.version>
|
|
|
|
|
<activiti.version>5.22.0</activiti.version>
|
|
|
|
|
<mapstruct.version>1.5.2.Final</mapstruct.version>
|
|
|
|
|
<easypoi.version>4.2.0</easypoi.version>
|
|
|
|
|
<alipay.version>4.31.7.ALL</alipay.version>
|
|
|
|
|
<aio.core.version>1.6.1</aio.core.version>
|
|
|
|
|
<smart.flow.version>1.0.6</smart.flow.version>
|
|
|
|
|
<smart.license.version>2.0</smart.license.version>
|
|
|
|
|
<bouncycastle.version>1.67</bouncycastle.version>
|
|
|
|
|
<wx.java.mp.version>4.3.0</wx.java.mp.version>
|
|
|
|
|
<truelicense.version>1.33</truelicense.version>
|
|
|
|
|
<!-- 测试 -->
|
|
|
|
|
<extentreports.testng.version>1.2.2</extentreports.testng.version>
|
|
|
|
|
<selenuim.version>4.1.4</selenuim.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- Spring Boot -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-dependencies</artifactId>
|
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Spring Boot Admin -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
|
<artifactId>spring-boot-admin-starter-server</artifactId>
|
|
|
|
|
<version>${spring.boot.admin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
|
<version>${spring.boot.admin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Druid 数据库连接池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Mysql -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
|
<version>${mysql.connector.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- JWT -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt</artifactId>
|
|
|
|
|
<version>${jjwt.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Mybatis-Plus -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
|
<version>${mybatis.plus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
|
<artifactId>mybatis-plus-generator</artifactId> <!-- 代码生成器,使用它解析表结构 -->
|
|
|
|
|
<version>${mybatis.plus.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Redission -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
|
<artifactId>redisson-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${redission.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- knife4j Swagger增强API文档 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${knife4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Gson -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.code.gson</groupId>
|
|
|
|
|
<artifactId>gson</artifactId>
|
|
|
|
|
<version>${gson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Hutool工具包 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Lombok -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Jasypt加密 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${jasypt.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Beetl代码生成使用 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ibeetl</groupId>
|
|
|
|
|
<artifactId>beetl</artifactId>
|
|
|
|
|
<version>${beetl.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
|
|
<version>${antlr.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Minio -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
<version>${minio.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 七牛云SDK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
|
<version>${qiniu.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 阿里云OSS -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
|
<version>${aliyun.oss.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 腾讯云COS -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.qcloud</groupId>
|
|
|
|
|
<artifactId>cos_api</artifactId>
|
|
|
|
|
<version>${qcloud.cos.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 腾讯云短信 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
|
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
|
|
|
|
<version>${tencentcloud.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- smart socket -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.smartboot.socket</groupId>
|
|
|
|
|
<artifactId>aio-core</artifactId>
|
|
|
|
|
<version>${aio.core.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.smartboot.socket</groupId>
|
|
|
|
|
<artifactId>aio-pro</artifactId>
|
|
|
|
|
<version>${aio.core.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- smart flow -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.smartboot</groupId>
|
|
|
|
|
<artifactId>smart-flow-springboot-starter</artifactId>
|
|
|
|
|
<version>${smart.flow.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- smart license -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.smartboot.license</groupId>
|
|
|
|
|
<artifactId>license-client</artifactId>
|
|
|
|
|
<version>${smart.license.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--支付宝依赖-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
|
|
<version>${alipay.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 支付接口 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.felord</groupId>
|
|
|
|
|
<artifactId>payment-spring-boot-starter</artifactId>
|
|
|
|
|
<version>1.0.14.RELEASE</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- mapstruct 转换器 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
<version>${mapstruct.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--easypoi导入导出-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.afterturn</groupId>
|
|
|
|
|
<artifactId>easypoi-base</artifactId>
|
|
|
|
|
<version>${easypoi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- BC -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
|
<version>${bouncycastle.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
|
<artifactId>bcpkix-jdk15on</artifactId>
|
|
|
|
|
<version>${bouncycastle.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 微信MP -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>wx-java-mp-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${wx.java.mp.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.binarywang</groupId>
|
|
|
|
|
<artifactId>wx-java-miniapp-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${wx.java.mp.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- License -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
|
|
|
|
<artifactId>truelicense-core</artifactId>
|
|
|
|
|
<version>${truelicense.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>de.schlichtherle.truelicense</groupId>
|
|
|
|
|
<artifactId>truelicense-xml</artifactId>
|
|
|
|
|
<version>${truelicense.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 测试框架TestNG + 测试报告 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aventstack</groupId>
|
|
|
|
|
<artifactId>extentreports-testng-adapter</artifactId>
|
|
|
|
|
<version>${extentreports.testng.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 自动化测试 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
|
<version>${selenuim.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
|
|
|
|
<version>${spring.boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>${maven.compiler.source}</source>
|
|
|
|
|
<target>${maven.compiler.target}</target>
|
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>${lombok.version}</version>
|
|
|
|
|
</path>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<version>${mapstruct.version}</version>
|
|
|
|
|
</path>
|
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|
<excludes>
|
|
|
|
|
<exclude>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</build>
|
|
|
|
|
</project>
|