-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
77 lines (70 loc) · 2.69 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
<?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">
<!-- pom版本标签,指明pom模型版本 -->
<modelVersion>4.0.0</modelVersion>
<!-- pom父项目标签 -->
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<!-- Spring Boot 的版本-->
<version>2.5.5</version>
<relativePath/>
</parent>
<!-- 公司或组织的ID -->
<groupId>com.cxhit</groupId>
<!-- 项目ID,本项目的唯一标识-->
<artifactId>springboot-study</artifactId>
<!-- 项目版本 -->
<version>1.0.0</version>
<!-- 打包方式修改为pom -->
<packaging>pom</packaging>
<!-- 项目名称 -->
<name>SpringBoot-Study</name>
<!-- 项目描述 -->
<description>SpringBoot-Demo</description>
<!-- 加入各个子模块 -->
<modules>
<module>study-captcha</module>
<module>study-mybatis-plus</module>
<module>study-mybatis-plus-fast-generator</module>
<module>study-oss-aliyun</module>
<module>study-oss-qiniu</module>
<module>study-pay-alipay</module>
<module>study-pay-wechat</module>
<module>study-redis</module>
<module>study-swagger3</module>
<module>study-notice-email</module>
<module>study-notice-sms</module>
<module>study-login-oauth</module>
<module>study-websocket</module>
<!-- 如果还有其他,继续增加 -->
<!-- <module>module-name</module>-->
</modules>
<!-- pom常量,其他位置可以直接引用 -->
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<!-- Spring Boot web -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!-- 如果不设置version,就会父级pom中dependencyManagement找,继承父级的 version 。如果设置了就用自己设置的版本 -->
<!-- <version></version> -->
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>