Skip to content

Commit 7e3e9fc

Browse files
author
liqiangqiang
committed
版本升级
1 parent dd0f24c commit 7e3e9fc

File tree

32 files changed

+54
-33
lines changed

32 files changed

+54
-33
lines changed

chapter-1-spring-boot-quickstart/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>1.5.1.RELEASE</version>
16+
<version>2.1.3.RELEASE</version>
1717
</parent>
1818

1919
<properties>

chapter-2-spring-boot-config/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.0.0.BUILD-SNAPSHOT</version>
16+
<version>2.1.3.RELEASE</version>
1717
</parent>
1818

1919
<properties>
@@ -52,7 +52,7 @@
5252
<plugin>
5353
<groupId>org.springframework.boot</groupId>
5454
<artifactId>spring-boot-maven-plugin</artifactId>
55-
<version>1.5.1.RELEASE</version>
55+
<version>2.1.3.RELEASE</version>
5656
</plugin>
5757

5858
</plugins>

chapter-3-spring-boot-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.0.0.BUILD-SNAPSHOT</version>
16+
<version>2.1.3.RELEASE</version>
1717
</parent>
1818

1919
<properties>

chapter-4-spring-boot-validating-form-input/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
<plugin>
7272
<groupId>org.springframework.boot</groupId>
7373
<artifactId>spring-boot-maven-plugin</artifactId>
74-
<version>1.5.1.RELEASE</version>
74+
<version>2.1.3.RELEASE</version>
7575
</plugin>
7676
</plugins>
7777
</build>

chapter-4-spring-boot-web-thymeleaf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.0.0.BUILD-SNAPSHOT</version>
16+
<version>2.1.3.RELEASE</version>
1717
</parent>
1818

1919
<properties>

chapter-5-spring-boot-data-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.0.0.BUILD-SNAPSHOT</version>
16+
<version>2.1.3.RELEASE</version>
1717
</parent>
1818

1919
<properties>

chapter-5-spring-boot-paging-sorting/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<plugin>
6161
<groupId>org.springframework.boot</groupId>
6262
<artifactId>spring-boot-maven-plugin</artifactId>
63-
<version>1.5.1.RELEASE</version>
63+
<version>2.1.3.RELEASE</version>
6464
</plugin>
6565
</plugins>
6666
</build>

chapter-6-spring-boot-cache-redis/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.0.0.BUILD-SNAPSHOT</version>
16+
<version>2.1.3.RELEASE</version>
1717
</parent>
1818

1919
<properties>

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,14 @@
7373
<!-- 第 5 章《数据存储》 -->
7474
<module>chapter-5-spring-boot-data-jpa</module>
7575
<!-- 第 6 章《数据缓存》 -->
76-
<module>chapter-6-spring-boot-cache-redis</module>
76+
<!--<module>chapter-6-spring-boot-cache-redis</module>-->
7777

7878
<!-- 第四章表单校验案例 -->
7979
<module>chapter-4-spring-boot-validating-form-input</module>
8080
<!-- 第五章数据分页排序案例 -->
8181
<module>chapter-5-spring-boot-paging-sorting</module>
8282

83+
<module>springboot-hbase</module>
8384
</modules>
8485

8586
</project>

springboot-configuration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>1.5.1.RELEASE</version>
15+
<version>2.1.3.RELEASE</version>
1616
</parent>
1717

1818
<dependencies>

0 commit comments

Comments
 (0)