Skip to content

Commit f67db14

Browse files
author
mhyeon-lee
committed
Upgrade spring data jdbc 2.1.8
(cherry picked from commit 67d9ff7)
1 parent 3131983 commit f67db14

File tree

11 files changed

+33
-33
lines changed

11 files changed

+33
-33
lines changed

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ spring-projects/spring-data-jdbc
7171
https://github.com/spring-projects/spring-data-jdbc
7272

7373

74-
Spring Data JDBC 2.1.7
74+
Spring Data JDBC 2.1.8
7575
Copyright (c) [2017-2019] Pivotal Software, Inc.
7676

7777
This product is licensed to you under the Apache License, Version 2.0 (the "License").

guide-projects/plus-repository-guide/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ dependencies {
55
implementation("org.projectlombok:lombok")
66
annotationProcessor("org.projectlombok:lombok")
77

8-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
9-
implementation("org.springframework.data:spring-data-relational:2.1.7")
10-
implementation("org.springframework.data:spring-data-commons:2.4.7")
8+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
9+
implementation("org.springframework.data:spring-data-relational:2.1.8")
10+
implementation("org.springframework.data:spring-data-commons:2.4.8")
1111

1212
testImplementation("org.springframework.boot:spring-boot-starter-test")
1313
testImplementation("org.projectlombok:lombok")

guide-projects/plus-sql-java-groovy-guide/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ dependencies {
3939
implementation("org.codehaus.groovy:groovy:2.5.8")
4040
implementation("com.h2database:h2")
4141

42-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
43-
implementation("org.springframework.data:spring-data-relational:2.1.7")
44-
implementation("org.springframework.data:spring-data-commons:2.4.7")
42+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
43+
implementation("org.springframework.data:spring-data-relational:2.1.8")
44+
implementation("org.springframework.data:spring-data-commons:2.4.8")
4545

4646
implementation project(":spring-data-plus-sql-gen")
4747
annotationProcessor project(":spring-data-plus-sql-gen")
48-
annotationProcessor("org.springframework.data:spring-data-jdbc:2.1.7")
49-
annotationProcessor("org.springframework.data:spring-data-relational:2.1.7")
50-
annotationProcessor("org.springframework.data:spring-data-commons:2.4.7")
48+
annotationProcessor("org.springframework.data:spring-data-jdbc:2.1.8")
49+
annotationProcessor("org.springframework.data:spring-data-relational:2.1.8")
50+
annotationProcessor("org.springframework.data:spring-data-commons:2.4.8")
5151

5252
compileOnly("org.projectlombok:lombok")
5353
annotationProcessor("org.projectlombok:lombok")

guide-projects/plus-sql-java-kotlin-guide/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ dependencies {
3737
implementation("org.projectlombok:lombok")
3838
annotationProcessor("org.projectlombok:lombok")
3939

40-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
41-
implementation("org.springframework.data:spring-data-relational:2.1.7")
42-
implementation("org.springframework.data:spring-data-commons:2.4.7")
40+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
41+
implementation("org.springframework.data:spring-data-relational:2.1.8")
42+
implementation("org.springframework.data:spring-data-commons:2.4.8")
4343

4444
testImplementation("org.springframework.boot:spring-boot-starter-test")
4545
testImplementation("org.projectlombok:lombok")

guide-projects/plus-sql-kotlin-guide/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ dependencies {
2727
implementation("org.jetbrains.kotlin:kotlin-reflect")
2828
implementation("com.h2database:h2")
2929

30-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
31-
implementation("org.springframework.data:spring-data-relational:2.1.7")
32-
implementation("org.springframework.data:spring-data-commons:2.4.7")
30+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
31+
implementation("org.springframework.data:spring-data-relational:2.1.8")
32+
implementation("org.springframework.data:spring-data-commons:2.4.8")
3333

3434
testImplementation("org.springframework.boot:spring-boot-starter-test")
3535
}

spring-boot-autoconfigure-data-jdbc-plus/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ dependencies {
55
implementation project(":spring-data-jdbc-plus-sql")
66
implementation project(":spring-data-jdbc-plus-repository")
77

8-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
9-
implementation("org.springframework.data:spring-data-relational:2.1.7")
10-
implementation("org.springframework.data:spring-data-commons:2.4.7")
8+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
9+
implementation("org.springframework.data:spring-data-relational:2.1.8")
10+
implementation("org.springframework.data:spring-data-commons:2.4.8")
1111
implementation("io.projectreactor:reactor-core")
1212

1313
testImplementation("org.junit.jupiter:junit-jupiter")

spring-boot-starter-data-jdbc-plus-repository/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dependencies {
33
compile(project(":spring-data-jdbc-plus-repository"))
44
compile("org.springframework.boot:spring-boot-starter-jdbc")
55

6-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
7-
implementation("org.springframework.data:spring-data-relational:2.1.7")
8-
implementation("org.springframework.data:spring-data-commons:2.4.7")
6+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
7+
implementation("org.springframework.data:spring-data-relational:2.1.8")
8+
implementation("org.springframework.data:spring-data-commons:2.4.8")
99
}

spring-boot-starter-data-jdbc-plus-sql/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ dependencies {
33
compile(project(":spring-data-jdbc-plus-sql"))
44
compile("org.springframework.boot:spring-boot-starter-jdbc")
55

6-
implementation("org.springframework.data:spring-data-jdbc:2.1.7")
7-
implementation("org.springframework.data:spring-data-relational:2.1.7")
8-
implementation("org.springframework.data:spring-data-commons:2.4.7")
6+
implementation("org.springframework.data:spring-data-jdbc:2.1.8")
7+
implementation("org.springframework.data:spring-data-relational:2.1.8")
8+
implementation("org.springframework.data:spring-data-commons:2.4.8")
99
}

spring-data-jdbc-plus-repository/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
compileJava.dependsOn(processResources)
22

33
dependencies {
4-
compile("org.springframework.data:spring-data-jdbc:2.1.7")
5-
compile("org.springframework.data:spring-data-relational:2.1.7")
6-
compile("org.springframework.data:spring-data-commons:2.4.7")
4+
compile("org.springframework.data:spring-data-jdbc:2.1.8")
5+
compile("org.springframework.data:spring-data-relational:2.1.8")
6+
compile("org.springframework.data:spring-data-commons:2.4.8")
77

88
testImplementation("org.junit.jupiter:junit-jupiter")
99
testImplementation("org.junit.jupiter:junit-jupiter-api")

spring-data-jdbc-plus-sql/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ compileJava.dependsOn(processResources)
22

33
dependencies {
44
compile project(":spring-jdbc-plus-support")
5-
compile("org.springframework.data:spring-data-jdbc:2.1.7")
6-
compile("org.springframework.data:spring-data-relational:2.1.7")
7-
compile("org.springframework.data:spring-data-commons:2.4.7")
5+
compile("org.springframework.data:spring-data-jdbc:2.1.8")
6+
compile("org.springframework.data:spring-data-relational:2.1.8")
7+
compile("org.springframework.data:spring-data-commons:2.4.8")
88
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.4.21")
99
compileOnly("org.jetbrains.kotlin:kotlin-reflect:1.4.21")
1010
compileOnly("io.projectreactor:reactor-core")

0 commit comments

Comments
 (0)