2021-11-29 10:00:15 +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>
|
|
|
|
|
|
|
|
|
|
<groupId>com.ailanyin</groupId>
|
|
|
|
|
<artifactId>vis389_backend</artifactId>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>ailanyin-admin</module>
|
|
|
|
|
<module>ailanyin-common</module>
|
|
|
|
|
<module>ailanyin-model-mapper</module>
|
|
|
|
|
<module>ailanyin-security</module>
|
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>2.5.5</version>
|
|
|
|
|
<relativePath/>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<!-- 项目统一字符集编码:UTF-8 -->
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
<!-- maven的一些插件输出文件时的字符编码:UTF-8 -->
|
|
|
|
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
|
|
|
|
<!-- jdk版本:8 -->
|
|
|
|
|
<java.version>8</java.version>
|
|
|
|
|
<!-- 项目模块版本 -->
|
|
|
|
|
<ailanyin.version>1.0-SNAPSHOT</ailanyin.version>
|
|
|
|
|
<!-- 不执行且不编译测试用例 -->
|
|
|
|
|
<maven.test.skip>true</maven.test.skip>
|
|
|
|
|
<!-- 分页插件 -->
|
|
|
|
|
<pagehelper-starter.version>1.3.1</pagehelper-starter.version>
|
|
|
|
|
<!-- 阿里巴巴数据源 -->
|
|
|
|
|
<druid.version>1.2.6</druid.version>
|
|
|
|
|
<!-- HuTool工具包 -->
|
|
|
|
|
<hutool.version>5.7.15</hutool.version>
|
|
|
|
|
<!-- 国产达梦dm8数据库驱动 -->
|
|
|
|
|
<dm8-connector.version>7.6.0.142</dm8-connector.version>
|
|
|
|
|
<!-- spring data工具包 -->
|
|
|
|
|
<spring-data-commons.version>2.5.4</spring-data-commons.version>
|
|
|
|
|
<!-- jwt -->
|
|
|
|
|
<jjwt.version>0.11.2</jjwt.version>
|
|
|
|
|
<!-- jwt解码库 -->
|
|
|
|
|
<nimbus-jose-jwt.version>8.16</nimbus-jose-jwt.version>
|
|
|
|
|
<!-- 阿里云SDK -->
|
|
|
|
|
<aliyun.version>4.5.30</aliyun.version>
|
|
|
|
|
<!-- 阿里云 Dysmsapi -->
|
|
|
|
|
<aliyun-dysmsapi.version>2.1.0</aliyun-dysmsapi.version>
|
|
|
|
|
<!-- 腾讯云SDK -->
|
|
|
|
|
<tencentcloud.version>3.1.332</tencentcloud.version>
|
|
|
|
|
<!-- minIo文件存储(请勿升级8版本)-->
|
|
|
|
|
<minio.version>7.1.0</minio.version>
|
|
|
|
|
<!-- mybatis -->
|
|
|
|
|
<mybatis-spring-boot.version>2.2.0</mybatis-spring-boot.version>
|
|
|
|
|
<!-- knife4接口文档 -->
|
2021-12-22 15:04:47 +08:00
|
|
|
|
<knife4j.version>2.0.8</knife4j.version>
|
2021-11-29 10:00:15 +08:00
|
|
|
|
<!-- 阿里json工具 -->
|
2023-08-28 15:07:37 +08:00
|
|
|
|
<fastjson.version>2.0.4</fastjson.version>
|
2021-11-29 10:00:15 +08:00
|
|
|
|
<!-- office处理工具类 -->
|
|
|
|
|
<easypoi.version>4.4.0</easypoi.version>
|
|
|
|
|
<!-- knife4的依赖 -->
|
2021-12-22 15:04:47 +08:00
|
|
|
|
<springfox.version>2.10.5</springfox.version>
|
2021-11-29 10:00:15 +08:00
|
|
|
|
<!-- 文件上传 -->
|
|
|
|
|
<commons.fileupload.version>1.4</commons.fileupload.version>
|
|
|
|
|
<!-- 获取系统信息 -->
|
|
|
|
|
<oshi.version>5.8.0</oshi.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- 分页插件 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${pagehelper-starter.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 阿里巴巴数据源 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- HuTool工具包 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- knife4接口文档 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${knife4j.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- dm8达梦数据库 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dameng</groupId>
|
|
|
|
|
<artifactId>Dm7JdbcDriver17</artifactId>
|
|
|
|
|
<version>${dm8-connector.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- spring data工具包 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.data</groupId>
|
|
|
|
|
<artifactId>spring-data-commons</artifactId>
|
|
|
|
|
<version>${spring-data-commons.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jwt-api -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
|
<version>${jjwt.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jwt-impl -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
|
<version>${jjwt.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jwt-json -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
|
<version>${jjwt.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- jwt解码库 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.nimbusds</groupId>
|
|
|
|
|
<artifactId>nimbus-jose-jwt</artifactId>
|
|
|
|
|
<version>${nimbus-jose-jwt.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 阿里云SDK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
|
<version>${aliyun.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 阿里云 Dysmsapi -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
|
|
|
|
<version>${aliyun-dysmsapi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 腾讯云SDK -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
|
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
|
|
|
|
<version>${tencentcloud.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- minIo文件存储 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
<version>${minio.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- SpringBoot集成mybatis框架 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mybatis.spring.boot</groupId>
|
|
|
|
|
<artifactId>mybatis-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${mybatis-spring-boot.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 阿里json工具 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
<version>${fastjson.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- poi -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.afterturn</groupId>
|
|
|
|
|
<artifactId>easypoi-spring-boot-starter</artifactId>
|
|
|
|
|
<version>${easypoi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- SpringFox -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
<artifactId>springfox-spring-web</artifactId>
|
|
|
|
|
<version>${springfox.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 文件上传工具类 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>commons-fileupload</groupId>
|
|
|
|
|
<artifactId>commons-fileupload</artifactId>
|
|
|
|
|
<version>${commons.fileupload.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 获取系统信息 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
|
<version>${oshi.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 通用模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ailanyin</groupId>
|
|
|
|
|
<artifactId>ailanyin-common</artifactId>
|
|
|
|
|
<version>${ailanyin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 公用对象和Dao模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ailanyin</groupId>
|
|
|
|
|
<artifactId>ailanyin-model-mapper</artifactId>
|
|
|
|
|
<version>${ailanyin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- 安全模块 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.ailanyin</groupId>
|
|
|
|
|
<artifactId>ailanyin-security</artifactId>
|
|
|
|
|
<version>${ailanyin.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<!-- maven打包工具 -->
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>public</id>
|
|
|
|
|
<name>aliyun nexus</name>
|
|
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
|
<pluginRepository>
|
|
|
|
|
<id>public</id>
|
|
|
|
|
<name>aliyun nexus</name>
|
|
|
|
|
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
</pluginRepository>
|
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
|
|
</project>
|