diff --git a/NOTICE b/NOTICE index 6f2b2b58..7a5f40d3 100644 --- a/NOTICE +++ b/NOTICE @@ -25,7 +25,7 @@ spring-projects/spring-data-commons https://github.com/spring-projects/spring-data-commons -Spring Data Commons 2.3.2.RELEASE +Spring Data Commons 2.3.3.RELEASE Copyright (c) [2010-2019] Pivotal Software, Inc. This product is licensed to you under the Apache License, Version 2.0 (the "License"). @@ -71,7 +71,7 @@ spring-projects/spring-data-jdbc https://github.com/spring-projects/spring-data-jdbc -Spring Data JDBC 2.0.2.RELEASE +Spring Data JDBC 2.0.3.RELEASE 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 b78ae65a..0fd47505 100644 --- a/README.md +++ b/README.md @@ -29,13 +29,13 @@ buildscript { } } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.2.RELEASE") + classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.3.RELEASE") } } dependencies { implementation("org.springframework.boot:spring-boot-starter-data-jdbc") - implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.0.2.RELEASE") + implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.0.3.RELEASE") } ``` @@ -44,7 +44,7 @@ dependencies { org.springframework.boot spring-boot-starter-parent - 2.3.2.RELEASE + 2.3.3.RELEASE @@ -56,7 +56,7 @@ dependencies { com.navercorp.spring spring-boot-starter-data-jdbc-plus-sql - 2.0.2.RELEASE + 2.0.3.RELEASE ``` diff --git a/build.gradle b/build.gradle index 4aebd53d..b0c42467 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { } } dependencies { - classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.2.RELEASE") + classpath("org.springframework.boot:spring-boot-gradle-plugin:2.3.3.RELEASE") } } diff --git a/guide-projects/plus-repository-guide/build.gradle b/guide-projects/plus-repository-guide/build.gradle index 57ce08aa..69ae980f 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") testImplementation("org.springframework.boot:spring-boot-starter-test") { exclude group: "org.junit.vintage", module: "junit-vintage-engine" diff --git a/guide-projects/plus-sql-java-groovy-guide/build.gradle b/guide-projects/plus-sql-java-groovy-guide/build.gradle index 291018d1..fcd9501a 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") implementation project(":spring-data-plus-sql-gen") annotationProcessor project(":spring-data-plus-sql-gen") - annotationProcessor("org.springframework.data:spring-data-jdbc:2.0.2.RELEASE") - annotationProcessor("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - annotationProcessor("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + annotationProcessor("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + annotationProcessor("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + annotationProcessor("org.springframework.data:spring-data-commons:2.3.3.RELEASE") 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 fd28dfc5..91d5a88b 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") testImplementation("org.springframework.boot:spring-boot-starter-test") { exclude group: "org.junit.vintage", module: "junit-vintage-engine" diff --git a/guide-projects/plus-sql-kotlin-guide/build.gradle.kts b/guide-projects/plus-sql-kotlin-guide/build.gradle.kts index 6ce4e3c5..a2a1c175 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") testImplementation("org.springframework.boot:spring-boot-starter-test") { exclude(group = "org.junit.vintage", module = "junit-vintage-engine") diff --git a/spring-boot-autoconfigure-data-jdbc-plus/build.gradle b/spring-boot-autoconfigure-data-jdbc-plus/build.gradle index 27135dc8..a036efbf 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") 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 06e89dc6..25c0c59d 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") } diff --git a/spring-boot-starter-data-jdbc-plus-sql/build.gradle b/spring-boot-starter-data-jdbc-plus-sql/build.gradle index 99e2417d..a43e43c8 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.0.2.RELEASE") - implementation("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - implementation("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + implementation("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + implementation("org.springframework.data:spring-data-commons:2.3.3.RELEASE") } diff --git a/spring-data-jdbc-plus-repository/build.gradle b/spring-data-jdbc-plus-repository/build.gradle index 3c7b2b8e..ccf230e1 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.0.2.RELEASE") - compile("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - compile("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + compile("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + compile("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + compile("org.springframework.data:spring-data-commons:2.3.3.RELEASE") 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 ba9dcaae..a6f4348b 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.0.2.RELEASE") - compile("org.springframework.data:spring-data-relational:2.0.2.RELEASE") - compile("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + compile("org.springframework.data:spring-data-jdbc:2.0.3.RELEASE") + compile("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + compile("org.springframework.data:spring-data-commons:2.3.3.RELEASE") compileOnly("org.jetbrains.kotlin:kotlin-stdlib:1.3.72") compileOnly("org.jetbrains.kotlin:kotlin-reflect:1.3.72") compileOnly("io.projectreactor:reactor-core") diff --git a/spring-data-plus-sql-gen/build.gradle b/spring-data-plus-sql-gen/build.gradle index b3832ef3..d0abb59d 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.0.2.RELEASE") - compile("org.springframework.data:spring-data-commons:2.3.2.RELEASE") + compile("org.springframework.data:spring-data-relational:2.0.3.RELEASE") + compile("org.springframework.data:spring-data-commons:2.3.3.RELEASE") compile project(":spring-data-jdbc-plus-sql") compile("com.squareup:javapoet:1.12.1")