1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <project xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
3
+ xmlns =" http://maven.apache.org/POM/4.0.0"
4
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5
+ <modelVersion >4.0.0</modelVersion >
6
+
7
+ <groupId >org.example</groupId >
8
+ <artifactId >ads</artifactId >
9
+ <version >1.0-SNAPSHOT</version >
10
+
11
+ <properties >
12
+ <maven .compiler.source>8</maven .compiler.source>
13
+ <maven .compiler.target>8</maven .compiler.target>
14
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
15
+ </properties >
16
+
17
+ <dependencies >
18
+ <dependency >
19
+ <groupId >org.springframework.boot</groupId >
20
+ <artifactId >spring-boot-starter-web</artifactId >
21
+ </dependency >
22
+
23
+ <dependency >
24
+ <groupId >org.springframework.boot</groupId >
25
+ <artifactId >spring-boot-starter-websocket</artifactId >
26
+ </dependency >
27
+
28
+ <dependency >
29
+ <groupId >org.springframework.cloud</groupId >
30
+ <artifactId >spring-cloud-starter-openfeign</artifactId >
31
+ </dependency >
32
+
33
+ <dependency >
34
+ <groupId >cn.hutool</groupId >
35
+ <artifactId >hutool-all</artifactId >
36
+ <version >5.8.24</version >
37
+ </dependency >
38
+
39
+ <!-- 持久层 -->
40
+ <dependency >
41
+ <groupId >com.baomidou</groupId >
42
+ <artifactId >mybatis-plus-boot-starter</artifactId >
43
+ <version >3.5.5</version >
44
+ </dependency >
45
+
46
+ <dependency >
47
+ <groupId >com.mysql</groupId >
48
+ <artifactId >mysql-connector-j</artifactId >
49
+ </dependency >
50
+
51
+ <!-- 代码生成 -->
52
+ <dependency >
53
+ <groupId >com.baomidou</groupId >
54
+ <artifactId >mybatis-plus-generator</artifactId >
55
+ <version >3.5.5</version >
56
+ </dependency >
57
+
58
+ <dependency >
59
+ <groupId >org.apache.velocity</groupId >
60
+ <artifactId >velocity-engine-core</artifactId >
61
+ <version >2.1</version >
62
+ </dependency >
63
+
64
+ <!-- 开发工具 -->
65
+ <dependency >
66
+ <groupId >org.springframework.boot</groupId >
67
+ <artifactId >spring-boot-starter-test</artifactId >
68
+ <scope >test</scope >
69
+ </dependency >
70
+
71
+ <dependency >
72
+ <groupId >org.springframework.boot</groupId >
73
+ <artifactId >spring-boot-devtools</artifactId >
74
+ <scope >runtime</scope >
75
+ </dependency >
76
+
77
+ <dependency >
78
+ <groupId >org.projectlombok</groupId >
79
+ <artifactId >lombok</artifactId >
80
+ <optional >true</optional >
81
+ </dependency >
82
+
83
+ <dependency >
84
+ <groupId >org.springframework.boot</groupId >
85
+ <artifactId >spring-boot-configuration-processor</artifactId >
86
+ <optional >true</optional >
87
+ </dependency >
88
+ </dependencies >
89
+
90
+ <dependencyManagement >
91
+ <dependencies >
92
+ <dependency >
93
+ <groupId >org.springframework.boot</groupId >
94
+ <artifactId >spring-boot-dependencies</artifactId >
95
+ <version >2.7.18</version >
96
+ <type >pom</type >
97
+ <scope >import</scope >
98
+ </dependency >
99
+
100
+ <dependency >
101
+ <groupId >org.springframework.cloud</groupId >
102
+ <artifactId >spring-cloud-dependencies</artifactId >
103
+ <version >2021.0.9</version >
104
+ <type >pom</type >
105
+ <scope >import</scope >
106
+ </dependency >
107
+ </dependencies >
108
+ </dependencyManagement >
109
+
110
+ <build >
111
+ <plugins >
112
+ <plugin >
113
+ <groupId >org.springframework.boot</groupId >
114
+ <artifactId >spring-boot-maven-plugin</artifactId >
115
+ <version >2.7.18</version >
116
+ <executions >
117
+ <execution >
118
+ <goals >
119
+ <goal >repackage</goal >
120
+ </goals >
121
+ </execution >
122
+ </executions >
123
+ </plugin >
124
+ </plugins >
125
+ </build >
126
+
127
+ </project >
0 commit comments