-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpom.xml
27 lines (24 loc) · 1.08 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
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<name>springboot-core-action-book-demo</name>
<description>《Spring Boot 2.x 核心技术实战 - 上 基础篇》 配套 Demo</description>
<groupId>springboot</groupId>
<artifactId>springboot-core-action-book-demo</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<modules>
<!-- 第 1 章《Spring Boot 入门》 -->
<module>chapter-1-spring-boot-quickstart</module>
<!-- 第 2 章《配置》 -->
<module>chapter-2-spring-boot-config</module>
<!-- 第 3 章《Web 开发》 -->
<module>chapter-3-spring-boot-web</module>
<!-- 第 4 章《模板引擎》 -->
<module>chapter-4-spring-boot-web-thymeleaf</module>
<!-- 第 5 章《数据存储》 -->
<module>chapter-5-spring-boot-data-jpa</module>
<!-- 第 6 章《数据缓存》 -->
<module>chapter-6-spring-boot-cache-redis</module>
</modules>
</project>