blob: 6f380520c92177bacefd2466d21e5011a679e9ce [file] [log] [blame]
刘嘉昕924e2112025-04-11 12:07:46 +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 <dependency>
43 <groupId>org.springframework.boot</groupId>
44 <artifactId>spring-boot-devtools</artifactId>
45 <scope>runtime</scope>
46 <optional>true</optional>
47 </dependency>
48 <dependency>
49 <groupId>com.mysql</groupId>
50 <artifactId>mysql-connector-j</artifactId>
51 <scope>runtime</scope>
52 </dependency>
53 <dependency>
54 <groupId>org.projectlombok</groupId>
55 <artifactId>lombok</artifactId>
56 <optional>true</optional>
57 </dependency>
58 <dependency>
59 <groupId>org.springframework.boot</groupId>
60 <artifactId>spring-boot-starter-test</artifactId>
61 <scope>test</scope>
62 </dependency>
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-compiler-plugin</artifactId>
70 <configuration>
71 <annotationProcessorPaths>
72 <path>
73 <groupId>org.projectlombok</groupId>
74 <artifactId>lombok</artifactId>
75 </path>
76 </annotationProcessorPaths>
77 </configuration>
78 </plugin>
79 <plugin>
80 <groupId>org.springframework.boot</groupId>
81 <artifactId>spring-boot-maven-plugin</artifactId>
82 <configuration>
83 <excludes>
84 <exclude>
85 <groupId>org.projectlombok</groupId>
86 <artifactId>lombok</artifactId>
87 </exclude>
88 </excludes>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93
94</project>