2025-01-22 14:08:42 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://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>3.4.1</version>
|
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
|
|
|
<groupId>cn.bunny</groupId>
|
|
|
|
<artifactId>mvc</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>mvc</name>
|
|
|
|
<description>mvc</description>
|
2025-01-22 21:52:10 +08:00
|
|
|
|
2025-01-22 14:08:42 +08:00
|
|
|
<properties>
|
|
|
|
<java.version>17</java.version>
|
2025-01-22 21:52:10 +08:00
|
|
|
<mybatis-plus.version>3.5.6</mybatis-plus.version>
|
2025-01-27 14:18:13 +08:00
|
|
|
<mysql.version>8.0.33</mysql.version>
|
2025-01-22 21:52:10 +08:00
|
|
|
<HikariCP.version>5.1.0</HikariCP.version>
|
2025-01-22 14:08:42 +08:00
|
|
|
</properties>
|
2025-01-22 21:52:10 +08:00
|
|
|
|
2025-01-22 14:08:42 +08:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2025-01-22 17:59:41 +08:00
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2025-01-22 14:08:42 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
2025-01-22 17:59:41 +08:00
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2025-01-22 14:08:42 +08:00
|
|
|
</dependency>
|
2025-01-22 17:59:41 +08:00
|
|
|
<!-- thymeleaf -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- devtools -->
|
2025-01-22 14:08:42 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
2025-01-22 17:59:41 +08:00
|
|
|
<!-- lombok -->
|
2025-01-22 14:08:42 +08:00
|
|
|
<dependency>
|
2025-01-22 17:59:41 +08:00
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.36</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- knife4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
|
|
|
|
<version>4.5.0</version>
|
2025-01-22 14:08:42 +08:00
|
|
|
</dependency>
|
2025-01-22 21:52:10 +08:00
|
|
|
<!-- mybatis-plus -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
|
|
|
|
<version>${mybatis-plus.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- mysql -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>${mysql.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- mysql连接池 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.zaxxer</groupId>
|
|
|
|
<artifactId>HikariCP</artifactId>
|
|
|
|
<version>${HikariCP.version}</version>
|
|
|
|
</dependency>
|
2025-01-22 14:08:42 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|