-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
302 lines (271 loc) · 11.5 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
<?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 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.0.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>wo1261931780</groupId>
<artifactId>st-javaSE</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>st-javaSE</name>
<description>A note-taking project developed using jdk17. To record my course notes on learning java and to help
zero-based developers start on the path to code.
</description>
<properties>
<java.version>17</java.version>
<!--<spring-native.version>0.12.1</spring-native.version>-->
<!--maven的打包配置-->
<!--<maven.compiler.source>8</maven.compiler.source>-->
<!--<maven.compiler.target>8</maven.compiler.target>-->
<!--编码格式-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<dependencies>
<!--=============================================================================================-->
<!--下面两个配置基本地启动,后面的按需修改-->
<!--=============================================================================================-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<!--spring网络WEB-->
<!--使用Spring MVC构建Web,包括RESTful,应用程序。使用Apache Tomcat作为默认的嵌入式容器。-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--=============================================================================================-->
<!--spring-->
<!--=============================================================================================-->
<!--Spring Boot DevTools 开发人员工具-->
<!--提供快速的应用重启、LiveReload和配置,以增强开发体验。-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<!--Spring配置处理器 开发者工具-->
<!--为开发人员生成元数据,以便在使用自定义配置键(ex.application.properties/.yml文件)时提供上下文帮助和 "代码完成"。-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
<!--添加以后,可以避免自动装配报错-->
</dependency>
<!--使用Spring Boot的Actuator的入门课程,它提供了生产准备的功能,帮助你监控和管理你的应用程序。-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!--=============================================================================================-->
<!--DEVELOPER_TOOLS-->
<!--=============================================================================================-->
<!--Lombok 开发者工具-->
<!--帮助减少模板代码的Java注释库。-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
<scope>provided</scope>
</dependency>
<!--=============================================================================================-->
<!--WEB-->
<!--=============================================================================================-->
<!--Spring Web Services WEB-->
<!--为契约优先的SOAP开发提供了便利。允许使用许多操作XML有效载荷的方法之一来创建灵活的Web服务。-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
</dependency>
<!--=============================================================================================-->
<!--MESSAGING-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--日志系统-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--数据库-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--Mybatis-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--数据库连接池-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--redis的包-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--TEST-->
<!--=============================================================================================-->
<!--使用包括JUnit Jupiter、Hamcrest和Mockito在内的库测试Spring Boot应用程序的入门者-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!--Spring Test支持用JUnit或TestNG对Spring组件进行单元测试和集成测试。-->
<!--它提供了一致的Spring ApplicationContexts的加载和缓存,并提供了模拟对象,你可以用它来孤立地测试你的代码。-->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
</dependency>
<!--=============================================================================================-->
<!--安全框架-->
<!--=============================================================================================-->
<!--spring安全 SECURITY-->
<!--为Spring应用程序提供高度可定制的认证和访问控制框架。-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<!--设置权限-->
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>
<!--=============================================================================================-->
<!--dubbo相关-->
<!--=============================================================================================-->
<!--=============================================================================================-->
<!--文件IO-->
<!--=============================================================================================-->
<!-- 文件上传组件 -->
<dependency>
<!--注掉,和Commons-io有冲突-->
<!--但是比Commons-io范围大-->
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.5</version>
</dependency>
<!--Quartz是一个工作调度库,可以嵌入到java应用程序中,支持事务、持久性、集群和插件。-->
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
</dependency>
<dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz-jobs</artifactId>
</dependency>
<!--存储服务-->
<dependency>
<groupId>com.qiniu</groupId>
<artifactId>qiniu-java-sdk</artifactId>
<version>7.14.0</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.19.4</version>
</dependency>
<!--=============================================================================================-->
<!--项目特殊依赖-->
<!--=============================================================================================-->
<!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
<!--用于Java的灵活的XML框架-->
<dependency>
<groupId>org.dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>2.1.4</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.2</version>
</dependency>
<!--阿里云短信服务-->
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<version>4.5.16</version>
</dependency>
<dependency>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
<version>2.2.1</version>
</dependency>
<!--这里需要使用swagger技术,实际上是为了生成接口文档-->
<!--Guava是一套核心库和扩展库,包括实用类、Google的集合、I/O类等等。-->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.1.3-jre</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!--<fork>true</fork>-->
<addResources>true</addResources>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
<!--<classifier>${repackage.classifier}</classifier>-->
<image>
<builder>paketobuildpacks/builder:tiny</builder>
<env>
<BP_NATIVE_IMAGE>true</BP_NATIVE_IMAGE>
</env>
</image>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.0</version>
<!--添加这个插件以后,我们就可以直接使用pom中的配置文件-->
<!--接着,其它地方就可以解析这里的配置参数-->
<configuration>
<encoding>UTF-8</encoding>
<useDefaultDelimiters>true</useDefaultDelimiters>
</configuration>
</plugin>
<!-- java编译插件 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<!--<configuration>-->
<!-- <source>1.8</source>-->
<!-- <target>1.8</target>-->
<!-- <encoding>UTF-8</encoding>-->
<!--</configuration>-->
</plugin>
</plugins>
</build>
<repositories>
<!--阿里云搭建了一个国内镜像http://maven.aliyun.com,跑起来速度很快,可以进行配置-->
<repository>
<id>nexus-aliyun</id>
<name>nexus-aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
</pluginRepositories>
<profiles>
</profiles>
</project>