Skip to content

Commit c837d3c

Browse files
author
Myeonghyeon-Lee
authored
Merge pull request #9 from naver/apply-spring-data-jdbc-2.0.0
Reviewed by: @benelog @sanha
2 parents 06de081 + fe0788a commit c837d3c

File tree

16 files changed

+107
-57
lines changed

16 files changed

+107
-57
lines changed

NOTICE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spring-projects/spring-data-commons
2525
https://github.com/spring-projects/spring-data-commons
2626

2727

28-
Spring Data Commons 2.2 RC2
28+
Spring Data Commons 2.3.0.RELEASE
2929
Copyright (c) [2010-2019] Pivotal Software, Inc.
3030

3131
This product is licensed to you under the Apache License, Version 2.0 (the "License").
@@ -71,7 +71,7 @@ spring-projects/spring-data-jdbc
7171
https://github.com/spring-projects/spring-data-jdbc
7272

7373

74-
Spring Data JDBC 1.1 RC2
74+
Spring Data JDBC 2.0.0.RELEASE
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").

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ buildscript {
2626
}
2727
}
2828
dependencies {
29-
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.6.RELEASE")
29+
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.7.RELEASE")
3030
}
3131
}
3232
3333
dependencies {
34-
implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.0.0.RC2")
35-
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RC2")
36-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
37-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
34+
implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.0.0.RELEASE")
35+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
36+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
37+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
3838
}
3939
```
4040

@@ -51,22 +51,22 @@ dependencies {
5151
<dependency>
5252
<groupId>com.navercorp.spring</groupId>
5353
<artifactId>spring-boot-starter-data-jdbc-plus-sql</artifactId>
54-
<version>2.0.0.RC2</version>
54+
<version>2.0.0.RELEASE</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.springframework.data</groupId>
5858
<artifactId>spring-data-jdbc</artifactId>
59-
<version>2.0.0.RC2</version>
59+
<version>2.0.0.RELEASE</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>org.springframework.data</groupId>
6363
<artifactId>spring-data-relational</artifactId>
64-
<version>2.0.0.RC2</version>
64+
<version>2.0.0.RELEASE</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.springframework.data</groupId>
6868
<artifactId>spring-data-commons</artifactId>
69-
<version>2.3.0.RC2</version>
69+
<version>2.3.0.RELEASE</version>
7070
</dependency>
7171
```
7272

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ buildscript {
99
}
1010
}
1111
dependencies {
12-
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.6.RELEASE")
12+
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.2.7.RELEASE")
1313
}
1414
}
1515

1616
allprojects {
1717
group = "com.navercorp.spring"
18-
version = "2.0.0.RC3-SNAPSHOT"
18+
version = "2.0.0.RELEASE"
1919
}
2020

2121
subprojects {

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.0.0.RC2")
9-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
10-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
8+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
9+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
10+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
1111

1212
testImplementation("org.springframework.boot:spring-boot-starter-test") {
1313
exclude group: "org.junit.vintage", module: "junit-vintage-engine"

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ dependencies {
4343
implementation("org.codehaus.groovy:groovy:2.5.8")
4444
implementation("com.h2database:h2")
4545

46-
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RC2")
47-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
48-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
46+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
47+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
48+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
4949

5050
implementation project(":spring-data-plus-sql-gen")
5151
annotationProcessor project(":spring-data-plus-sql-gen")
52-
annotationProcessor("org.springframework.data:spring-data-jdbc:2.0.0.RC2")
53-
annotationProcessor("org.springframework.data:spring-data-relational:2.0.0.RC2")
54-
annotationProcessor("org.springframework.data:spring-data-commons:2.3.0.RC2")
52+
annotationProcessor("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
53+
annotationProcessor("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
54+
annotationProcessor("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
5555

5656
compileOnly("org.projectlombok:lombok")
5757
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.0.0.RC2")
41-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
42-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
40+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
41+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
42+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
4343

4444
testImplementation("org.springframework.boot:spring-boot-starter-test") {
4545
exclude group: "org.junit.vintage", module: "junit-vintage-engine"

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.0.0.RC2")
31-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
32-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
30+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
31+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
32+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
3333

3434
testImplementation("org.springframework.boot:spring-boot-starter-test") {
3535
exclude(group = "org.junit.vintage", module = "junit-vintage-engine")

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.0.0.RC2")
9-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
10-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
8+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
9+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
10+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
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.0.0.RC2")
7-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
8-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
6+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
7+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
8+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
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.0.0.RC2")
7-
implementation("org.springframework.data:spring-data-relational:2.0.0.RC2")
8-
implementation("org.springframework.data:spring-data-commons:2.3.0.RC2")
6+
implementation("org.springframework.data:spring-data-jdbc:2.0.0.RELEASE")
7+
implementation("org.springframework.data:spring-data-relational:2.0.0.RELEASE")
8+
implementation("org.springframework.data:spring-data-commons:2.3.0.RELEASE")
99
}

0 commit comments

Comments
 (0)