blob: 22f8f1cc7a7ff612fdefbdbbf5c6aed4e5c885d0 [file] [log] [blame]
刘嘉昕f28ea232025-04-15 16:55:43 +08001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.springframework.boot</groupId>
7 <artifactId>spring-boot-starter-parent</artifactId>
8 <version>3.4.4</version>
9 <relativePath/> <!-- lookup parent from repository -->
10 </parent>
11 <groupId>com.pt5</groupId>
12 <artifactId>PT-houduan</artifactId>
13 <version>0.0.1-SNAPSHOT</version>
14 <name>PT-houduan</name>
15 <description>PT-houduan</description>
16 <url/>
17 <licenses>
18 <license/>
19 </licenses>
20 <developers>
21 <developer/>
22 </developers>
23 <scm>
24 <connection/>
25 <developerConnection/>
26 <tag/>
27 <url/>
28 </scm>
29 <properties>
30 <java.version>17</java.version>
31 </properties>
32 <dependencies>
33 <dependency>
34 <groupId>org.springframework.boot</groupId>
35 <artifactId>spring-boot-starter-data-jpa</artifactId>
36 </dependency>
37 <dependency>
38 <groupId>org.springframework.boot</groupId>
39 <artifactId>spring-boot-starter-web</artifactId>
40 </dependency>
41
42 <!-- MyBatis-Plus -->
43 <dependency>
44 <groupId>com.baomidou</groupId>
45 <artifactId>mybatis-plus-boot-starter</artifactId>
46 <version>3.5.6</version>
47 </dependency>
48 <dependency>
49 <groupId>org.mybatis</groupId>
50 <artifactId>mybatis-spring</artifactId>
51 <version>3.0.3</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.springframework.boot</groupId>
56 <artifactId>spring-boot-devtools</artifactId>
57 <scope>runtime</scope>
58 <optional>true</optional>
59 </dependency>
60 <dependency>
61 <groupId>com.mysql</groupId>
62 <artifactId>mysql-connector-j</artifactId>
63 <scope>runtime</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.projectlombok</groupId>
67 <artifactId>lombok</artifactId>
68 <optional>true</optional>
69 </dependency>
70 <dependency>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-starter-test</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>com.h2database</groupId>
77 <artifactId>h2</artifactId>
78 <scope>test</scope>
79 </dependency>
80 </dependencies>
81
82 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-compiler-plugin</artifactId>
87 <configuration>
88 <annotationProcessorPaths>
89 <path>
90 <groupId>org.projectlombok</groupId>
91 <artifactId>lombok</artifactId>
92 </path>
93 </annotationProcessorPaths>
94 </configuration>
95 </plugin>
96 <plugin>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-maven-plugin</artifactId>
99 <configuration>
100 <excludes>
101 <exclude>
102 <groupId>org.projectlombok</groupId>
103 <artifactId>lombok</artifactId>
104 </exclude>
105 </excludes>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
110
111</project>