2024-06-18 16:19:49 +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>
|
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-20 15:19:59 +08:00
|
|
|
|
2024-06-18 16:19:49 +08:00
|
|
|
<maven.plugin.version>3.8.1</maven.plugin.version>
|
|
|
|
<kaptcha.version>2.3.2</kaptcha.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-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>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- web 容器使用 undertow 代替 tomcat-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-undertow</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--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-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>com.github.penggle</groupId>
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
<version>${kaptcha.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
<!--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-20 15:19:59 +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>
|
|
|
|
<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-06-18 16:19:49 +08:00
|
|
|
|
|
|
|
<!--aop切面-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</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>
|