Skip to content

Commit bdda5ce

Browse files
committed
Spring Boot 2.1.7 -> 2.2.2
1 parent 339321f commit bdda5ce

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ java -jar target/code-demo-1.0-SNAPSHOT.jar
158158

159159

160160
## 集成的组件
161-
- [Spring Boot 2.1.7](https://docs.spring.io/spring-boot/docs/2.1.7.RELEASE/reference/html/)
161+
- [Spring Boot 2.2.2](https://docs.spring.io/spring-boot/docs/2.2.2.RELEASE/reference/html/)
162162
- [MyBatis通用Mapper](https://github.com/abel533/Mapper) - tk.mybatis
163163
- [Mybatis通用分页插件](https://github.com/pagehelper/Mybatis-PageHelper) - PageHelper
164164
- [lombok](https://projectlombok.org/) - 简化使用

pom.xml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>org.springframework.boot</groupId>
99
<artifactId>spring-boot-starter-parent</artifactId>
10-
<version>2.1.7.RELEASE</version>
10+
<version>2.2.2.RELEASE</version>
1111
<relativePath/> <!-- lookup parent from repository -->
1212
</parent>
1313

@@ -32,6 +32,7 @@
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3333
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3434
<java.version>1.8</java.version>
35+
<spring-cloud.version>Hoxton.SR1</spring-cloud.version>
3536
<code-core.version>1.0-SNAPSHOT</code-core.version>
3637
<code-generator.version>1.0-SNAPSHOT</code-generator.version>
3738
<tk.mybatis.version>2.1.5</tk.mybatis.version>
@@ -47,6 +48,13 @@
4748

4849
<dependencyManagement>
4950
<dependencies>
51+
<dependency>
52+
<groupId>org.springframework.cloud</groupId>
53+
<artifactId>spring-cloud-dependencies</artifactId>
54+
<version>${spring-cloud.version}</version>
55+
<type>pom</type>
56+
<scope>import</scope>
57+
</dependency>
5058
<dependency>
5159
<groupId>lazy.fast.code</groupId>
5260
<artifactId>code-core</artifactId>

0 commit comments

Comments
 (0)