Skip to content

Commit 19fa238

Browse files
author
mhyeon-lee
committed
Upgrade spring boot version to 2.3.1
(cherry picked from commit 882fc78)
1 parent feceb6f commit 19fa238

File tree

2 files changed

+15
-28
lines changed

2 files changed

+15
-28
lines changed

README.md

Lines changed: 14 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -29,47 +29,34 @@ buildscript {
2929
}
3030
}
3131
dependencies {
32-
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.0.RELEASE")
32+
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.1.RELEASE")
3333
}
3434
}
3535
3636
dependencies {
37+
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
3738
implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.0.1.RELEASE")
38-
implementation("org.springframework.data:spring-data-jdbc:2.0.1.RELEASE")
39-
implementation("org.springframework.data:spring-data-relational:2.0.1.RELEASE")
40-
implementation("org.springframework.data:spring-data-commons:2.3.1.RELEASE")
4139
}
4240
```
4341

4442
* Maven
4543
```xml
46-
<repositories>
47-
<repository>
48-
<id>repository.spring.milestone</id>
49-
<name>Spring Milestone Repository</name>
50-
<url>http://repo.spring.io/milestone</url>
51-
</repository>
52-
</repositories>
44+
<parent>
45+
<groupId>org.springframework.boot</groupId>
46+
<artifactId>spring-boot-starter-parent</artifactId>
47+
<version>2.3.1.RELEASE</version>
48+
<relativePath/>
49+
</parent>
5350

5451
<dependency>
55-
<groupId>com.navercorp.spring</groupId>
56-
<artifactId>spring-boot-starter-data-jdbc-plus-sql</artifactId>
57-
<version>2.0.1.RELEASE</version>
58-
</dependency>
59-
<dependency>
60-
<groupId>org.springframework.data</groupId>
61-
<artifactId>spring-data-jdbc</artifactId>
62-
<version>2.0.1.RELEASE</version>
63-
</dependency>
64-
<dependency>
65-
<groupId>org.springframework.data</groupId>
66-
<artifactId>spring-data-relational</artifactId>
67-
<version>2.0.1.RELEASE</version>
52+
<groupId>org.springframework.boot</groupId>
53+
<artifactId>spring-boot-starter-data-jdbc</artifactId>
6854
</dependency>
55+
6956
<dependency>
70-
<groupId>org.springframework.data</groupId>
71-
<artifactId>spring-data-commons</artifactId>
72-
<version>2.3.1.RELEASE</version>
57+
<groupId>com.navercorp.spring</groupId>
58+
<artifactId>spring-boot-starter-data-jdbc-plus-sql</artifactId>
59+
<version>2.0.1.RELEASE</version>
7360
</dependency>
7461
```
7562

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010
}
1111
dependencies {
12-
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.0.RELEASE")
12+
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.1.RELEASE")
1313
}
1414
}
1515

0 commit comments

Comments
 (0)