diff --git a/NOTICE b/NOTICE
index 85fde7a1..85dacea6 100644
--- a/NOTICE
+++ b/NOTICE
@@ -71,7 +71,7 @@ spring-projects/spring-data-jdbc
https://github.com/spring-projects/spring-data-jdbc
-Spring Data Relational 2.4.5
+Spring Data Relational 2.4.6
Copyright (c) [2017-2019] Pivotal Software, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").
diff --git a/README.md b/README.md
index fb72a333..ff5c3c63 100644
--- a/README.md
+++ b/README.md
@@ -31,13 +31,13 @@ If you need to use Spring Data JDBC's Persistence features and SQL execution fun
}
}
dependencies {
- classpath("org.springframework.boot:spring-boot-gradle-plugin:2.7.5")
+ classpath("org.springframework.boot:spring-boot-gradle-plugin:2.7.6")
}
}
dependencies {
implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
- implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.4.5")
+ implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.4.6")
}
```
@@ -47,7 +47,7 @@ If you need to use Spring Data JDBC's Persistence features and SQL execution fun
org.springframework.boot
spring-boot-starter-parent
- 2.7.5
+ 2.7.6
@@ -59,7 +59,7 @@ If you need to use Spring Data JDBC's Persistence features and SQL execution fun
com.navercorp.spring
spring-boot-starter-data-jdbc-plus-sql
- 2.4.5
+ 2.4.6
```
diff --git a/guide-projects/plus-repository-guide/build.gradle b/guide-projects/plus-repository-guide/build.gradle
index 824e2b8d..23c9c3aa 100644
--- a/guide-projects/plus-repository-guide/build.gradle
+++ b/guide-projects/plus-repository-guide/build.gradle
@@ -5,9 +5,9 @@ dependencies {
implementation("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.projectlombok:lombok")
diff --git a/guide-projects/plus-sql-java-groovy-guide/build.gradle b/guide-projects/plus-sql-java-groovy-guide/build.gradle
index 7849648b..521b76ae 100644
--- a/guide-projects/plus-sql-java-groovy-guide/build.gradle
+++ b/guide-projects/plus-sql-java-groovy-guide/build.gradle
@@ -39,15 +39,15 @@ dependencies {
implementation("org.codehaus.groovy:groovy:2.5.8")
implementation("com.h2database:h2")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
implementation project(":spring-data-plus-sql-gen")
annotationProcessor project(":spring-data-plus-sql-gen")
- annotationProcessor("org.springframework.data:spring-data-jdbc:2.4.5")
- annotationProcessor("org.springframework.data:spring-data-relational:2.4.5")
- annotationProcessor("org.springframework.data:spring-data-commons:2.7.5")
+ annotationProcessor("org.springframework.data:spring-data-jdbc:2.4.6")
+ annotationProcessor("org.springframework.data:spring-data-relational:2.4.6")
+ annotationProcessor("org.springframework.data:spring-data-commons:2.7.6")
compileOnly("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
diff --git a/guide-projects/plus-sql-java-kotlin-guide/build.gradle b/guide-projects/plus-sql-java-kotlin-guide/build.gradle
index eb498f56..17d27cb3 100644
--- a/guide-projects/plus-sql-java-kotlin-guide/build.gradle
+++ b/guide-projects/plus-sql-java-kotlin-guide/build.gradle
@@ -37,9 +37,9 @@ dependencies {
implementation("org.projectlombok:lombok")
annotationProcessor("org.projectlombok:lombok")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.projectlombok:lombok")
diff --git a/guide-projects/plus-sql-kotlin-guide/build.gradle.kts b/guide-projects/plus-sql-kotlin-guide/build.gradle.kts
index de89f864..0b48f7bf 100644
--- a/guide-projects/plus-sql-kotlin-guide/build.gradle.kts
+++ b/guide-projects/plus-sql-kotlin-guide/build.gradle.kts
@@ -27,9 +27,9 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect")
implementation("com.h2database:h2")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
testImplementation("org.springframework.boot:spring-boot-starter-test")
}
diff --git a/spring-boot-autoconfigure-data-jdbc-plus/build.gradle b/spring-boot-autoconfigure-data-jdbc-plus/build.gradle
index 5f2a821f..01a0416e 100644
--- a/spring-boot-autoconfigure-data-jdbc-plus/build.gradle
+++ b/spring-boot-autoconfigure-data-jdbc-plus/build.gradle
@@ -5,9 +5,9 @@ dependencies {
implementation project(":spring-data-jdbc-plus-sql")
implementation project(":spring-data-jdbc-plus-repository")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
implementation("io.projectreactor:reactor-core")
testImplementation("org.junit.jupiter:junit-jupiter")
diff --git a/spring-boot-starter-data-jdbc-plus-repository/build.gradle b/spring-boot-starter-data-jdbc-plus-repository/build.gradle
index 107853f6..604aaefc 100644
--- a/spring-boot-starter-data-jdbc-plus-repository/build.gradle
+++ b/spring-boot-starter-data-jdbc-plus-repository/build.gradle
@@ -3,7 +3,7 @@ dependencies {
compile(project(":spring-data-jdbc-plus-repository"))
compile("org.springframework.boot:spring-boot-starter-jdbc")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
}
diff --git a/spring-boot-starter-data-jdbc-plus-sql/build.gradle b/spring-boot-starter-data-jdbc-plus-sql/build.gradle
index e8db0c93..9df03a60 100644
--- a/spring-boot-starter-data-jdbc-plus-sql/build.gradle
+++ b/spring-boot-starter-data-jdbc-plus-sql/build.gradle
@@ -3,7 +3,7 @@ dependencies {
compile(project(":spring-data-jdbc-plus-sql"))
compile("org.springframework.boot:spring-boot-starter-jdbc")
- implementation("org.springframework.data:spring-data-jdbc:2.4.5")
- implementation("org.springframework.data:spring-data-relational:2.4.5")
- implementation("org.springframework.data:spring-data-commons:2.7.5")
+ implementation("org.springframework.data:spring-data-jdbc:2.4.6")
+ implementation("org.springframework.data:spring-data-relational:2.4.6")
+ implementation("org.springframework.data:spring-data-commons:2.7.6")
}
diff --git a/spring-data-jdbc-plus-repository/build.gradle b/spring-data-jdbc-plus-repository/build.gradle
index 9550927d..522fd83e 100644
--- a/spring-data-jdbc-plus-repository/build.gradle
+++ b/spring-data-jdbc-plus-repository/build.gradle
@@ -1,9 +1,9 @@
compileJava.dependsOn(processResources)
dependencies {
- compile("org.springframework.data:spring-data-jdbc:2.4.5")
- compile("org.springframework.data:spring-data-relational:2.4.5")
- compile("org.springframework.data:spring-data-commons:2.7.5")
+ compile("org.springframework.data:spring-data-jdbc:2.4.6")
+ compile("org.springframework.data:spring-data-relational:2.4.6")
+ compile("org.springframework.data:spring-data-commons:2.7.6")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.junit.jupiter:junit-jupiter-api")
diff --git a/spring-data-jdbc-plus-sql/build.gradle b/spring-data-jdbc-plus-sql/build.gradle
index 1070ebe2..1cf08f3d 100644
--- a/spring-data-jdbc-plus-sql/build.gradle
+++ b/spring-data-jdbc-plus-sql/build.gradle
@@ -2,9 +2,9 @@ compileJava.dependsOn(processResources)
dependencies {
compile project(":spring-jdbc-plus-support")
- compile("org.springframework.data:spring-data-jdbc:2.4.5")
- compile("org.springframework.data:spring-data-relational:2.4.5")
- compile("org.springframework.data:spring-data-commons:2.7.5")
+ compile("org.springframework.data:spring-data-jdbc:2.4.6")
+ compile("org.springframework.data:spring-data-relational:2.4.6")
+ compile("org.springframework.data:spring-data-commons:2.7.6")
compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.4.21")
compileOnly("org.jetbrains.kotlin:kotlin-reflect:1.4.21")
compileOnly("io.projectreactor:reactor-core")
diff --git a/spring-data-plus-sql-gen/build.gradle b/spring-data-plus-sql-gen/build.gradle
index 56843600..5ae8a697 100644
--- a/spring-data-plus-sql-gen/build.gradle
+++ b/spring-data-plus-sql-gen/build.gradle
@@ -1,6 +1,6 @@
dependencies {
- compile("org.springframework.data:spring-data-relational:2.4.5")
- compile("org.springframework.data:spring-data-commons:2.7.5")
+ compile("org.springframework.data:spring-data-relational:2.4.6")
+ compile("org.springframework.data:spring-data-commons:2.7.6")
compile project(":spring-data-jdbc-plus-sql")
compile("com.squareup:javapoet:1.12.1")