2024-06-18 16:19:49 +08:00
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2024-07-15 16:48:20 +08:00
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
2024-06-18 16:19:49 +08:00
|
|
|
|
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>
|
2024-06-20 15:19:59 +08:00
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
|
<version>3.3.0</version>
|
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
|
</parent>
|
2024-06-19 14:37:20 +08:00
|
|
|
|
<groupId>com.das</groupId>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<artifactId>das</artifactId>
|
|
|
|
|
<version>1.0.0-release</version>
|
2024-06-19 15:43:10 +08:00
|
|
|
|
<name>das</name>
|
|
|
|
|
<description>base das project for Spring Boot</description>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
|
|
|
|
|
<properties>
|
2024-06-19 15:43:10 +08:00
|
|
|
|
<java.version>17</java.version>
|
2024-06-24 09:13:14 +08:00
|
|
|
|
<hutool.version>5.8.18</hutool.version>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<maven.plugin.version>3.8.1</maven.plugin.version>
|
2024-06-20 15:57:04 +08:00
|
|
|
|
<mybatis.plus.spring.boot>3.5.5</mybatis.plus.spring.boot>
|
2024-06-21 16:16:41 +08:00
|
|
|
|
<hutool.version>5.8.25</hutool.version>
|
2024-06-20 15:19:59 +08:00
|
|
|
|
|
2024-06-21 16:16:41 +08:00
|
|
|
|
<postgresql.version>42.7.3</postgresql.version>
|
2024-06-20 16:23:01 +08:00
|
|
|
|
<sa.version>1.38.0</sa.version>
|
2024-11-08 13:57:09 +08:00
|
|
|
|
<easyexcel.version>3.2.1</easyexcel.version>
|
2024-06-27 13:15:44 +08:00
|
|
|
|
<annotations.version>4.8.6</annotations.version>
|
2024-07-08 17:59:39 +08:00
|
|
|
|
<undertow.version>2.3.14.Final</undertow.version>
|
|
|
|
|
<apache.poi>5.3.0</apache.poi>
|
2024-08-08 09:53:09 +08:00
|
|
|
|
<taosdata.verson>3.2.10</taosdata.verson>
|
2024-10-31 17:46:56 +08:00
|
|
|
|
<disruptor.version>3.4.4</disruptor.version>
|
|
|
|
|
<aviator.version>5.4.3</aviator.version>
|
2024-11-11 16:41:25 +08:00
|
|
|
|
<minio.version>8.4.3</minio.version>
|
2024-11-12 17:13:05 +08:00
|
|
|
|
<jfreechart.version>1.5.3</jfreechart.version>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
</exclusion>
|
2024-12-27 11:11:28 +08:00
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
|
</exclusion>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
2024-12-27 11:11:28 +08:00
|
|
|
|
<!-- 使用log4j2代替logback-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
|
|
|
</dependency>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<!-- web 容器使用 undertow 代替 tomcat-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
|
|
|
</dependency>
|
2024-07-08 13:04:18 +08:00
|
|
|
|
<!-- websocket支持-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
|
</dependency>
|
2024-10-31 17:46:56 +08:00
|
|
|
|
<!-- 定时任务支持-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
|
|
|
</dependency>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
|
|
|
|
|
<!--spring 配置支持-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
|
<artifactId>postgresql</artifactId>
|
2024-06-19 16:18:41 +08:00
|
|
|
|
<version>${postgresql.version}</version>
|
2024-06-20 15:19:59 +08:00
|
|
|
|
<scope>runtime</scope>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
2024-06-20 16:23:01 +08:00
|
|
|
|
<artifactId>sa-token-spring-boot3-starter</artifactId>
|
2024-06-19 16:18:41 +08:00
|
|
|
|
<version>${sa.version}</version>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
2024-06-20 16:27:26 +08:00
|
|
|
|
<artifactId>sa-token-redis-jackson</artifactId>
|
2024-06-19 16:18:41 +08:00
|
|
|
|
<version>${sa.version}</version>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-07-03 16:25:51 +08:00
|
|
|
|
<dependency>
|
2024-07-15 16:48:20 +08:00
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
|
<version>${apache.poi}</version>
|
2024-07-03 16:25:51 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-07-08 17:59:39 +08:00
|
|
|
|
<dependency>
|
2024-07-15 16:48:20 +08:00
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-poi</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
2024-07-08 17:59:39 +08:00
|
|
|
|
</dependency>
|
2024-07-03 16:25:51 +08:00
|
|
|
|
|
2024-08-08 09:53:09 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.taosdata.jdbc</groupId>
|
|
|
|
|
<artifactId>taos-jdbcdriver</artifactId>
|
|
|
|
|
<version>${taosdata.verson}</version>
|
|
|
|
|
</dependency>
|
2024-07-15 16:48:20 +08:00
|
|
|
|
|
2024-06-20 16:27:26 +08:00
|
|
|
|
<!-- 提供Redis连接池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-06-24 09:13:14 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<!--mybatis-plus-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.baomidou</groupId>
|
2024-06-20 15:57:04 +08:00
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<version>${mybatis.plus.spring.boot}</version>
|
|
|
|
|
</dependency>
|
2024-06-27 10:51:48 +08:00
|
|
|
|
|
|
|
|
|
<!-- hutool 的依赖配置-->
|
2024-06-20 15:48:26 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
2024-06-20 15:19:59 +08:00
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
2024-06-21 16:37:17 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-captcha</artifactId>
|
|
|
|
|
<version>${hutool.version}</version>
|
|
|
|
|
</dependency>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--redis 操作-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
2024-06-20 15:19:59 +08:00
|
|
|
|
|
2024-07-16 17:29:11 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.lmax</groupId>
|
|
|
|
|
<artifactId>disruptor</artifactId>
|
2024-10-31 17:46:56 +08:00
|
|
|
|
<version>${disruptor.version}</version>
|
2024-07-16 17:29:11 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-10-31 17:46:56 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
|
<version>${aviator.version}</version>
|
|
|
|
|
</dependency>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
|
|
|
|
|
<!--aop切面-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
</dependency>
|
2024-06-27 13:15:44 +08:00
|
|
|
|
|
|
|
|
|
<!-- 临时修复MAYBE枚举量未定义问题,等待Spring6.2正式发行-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.spotbugs</groupId>
|
|
|
|
|
<artifactId>spotbugs-annotations</artifactId>
|
|
|
|
|
<version>${annotations.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-11-08 13:57:09 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
<version>${easyexcel.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
|
<artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-11-11 16:41:25 +08:00
|
|
|
|
<!-- minio -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
<version>${minio.version}</version>
|
|
|
|
|
</dependency>
|
2024-11-12 17:13:05 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jfree</groupId>
|
|
|
|
|
<artifactId>jfreechart</artifactId>
|
|
|
|
|
<version>${jfreechart.version}</version>
|
|
|
|
|
</dependency>
|
2024-06-18 16:19:49 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<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>
|