File tree Expand file tree Collapse file tree 12 files changed +37
-37
lines changed
plus-sql-java-groovy-guide
plus-sql-java-kotlin-guide
spring-boot-autoconfigure-data-jdbc-plus
spring-boot-starter-data-jdbc-plus-repository
spring-boot-starter-data-jdbc-plus-sql
spring-data-jdbc-plus-repository
spring-data-jdbc-plus-sql Expand file tree Collapse file tree 12 files changed +37
-37
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ spring-projects/spring-data-commons
2525https://github.com/spring-projects/spring-data-commons
2626
2727
28- Spring Data Commons 2.5.2
28+ Spring Data Commons 2.5.3
2929Copyright (c) [2010-2019] Pivotal Software, Inc.
3030
3131This product is licensed to you under the Apache License, Version 2.0 (the "License").
@@ -71,7 +71,7 @@ spring-projects/spring-data-jdbc
7171https://github.com/spring-projects/spring-data-jdbc
7272
7373
74- Spring Data JDBC 2.2.2
74+ Spring Data JDBC 2.2.3
7575Copyright (c) [2017-2019] Pivotal Software, Inc.
7676
7777This product is licensed to you under the Apache License, Version 2.0 (the "License").
Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ If you need to use Spring Data JDBC's Persistence features and SQL execution fun
3131 }
3232 }
3333 dependencies {
34- classpath("org.springframework.boot:spring-boot-gradle-plugin:2.5.2 ")
34+ classpath("org.springframework.boot:spring-boot-gradle-plugin:2.5.3 ")
3535 }
3636 }
3737
3838 dependencies {
3939 implementation("org.springframework.boot:spring-boot-starter-data-jdbc")
40- implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.2.2 ")
40+ implementation("com.navercorp.spring:spring-boot-starter-data-jdbc-plus-sql:2.2.3 ")
4141 }
4242 ```
4343
@@ -47,7 +47,7 @@ If you need to use Spring Data JDBC's Persistence features and SQL execution fun
4747 <parent>
4848 <groupId>org.springframework.boot</groupId>
4949 <artifactId>spring-boot-starter-parent</artifactId>
50- <version>2.5.2 </version>
50+ <version>2.5.3 </version>
5151 <relativePath/>
5252 </parent>
5353
Original file line number Diff line number Diff 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.2.2 " )
9- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
10- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
8+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
9+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
10+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
1111
1212 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
1313 testImplementation(" org.projectlombok:lombok" )
Original file line number Diff line number Diff 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.2.2 " )
43- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
44- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
42+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
43+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
44+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
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.2.2 " )
49- annotationProcessor(" org.springframework.data:spring-data-relational:2.2.2 " )
50- annotationProcessor(" org.springframework.data:spring-data-commons:2.5.2 " )
48+ annotationProcessor(" org.springframework.data:spring-data-jdbc:2.2.3 " )
49+ annotationProcessor(" org.springframework.data:spring-data-relational:2.2.3 " )
50+ annotationProcessor(" org.springframework.data:spring-data-commons:2.5.3 " )
5151
5252 compileOnly(" org.projectlombok:lombok" )
5353 annotationProcessor(" org.projectlombok:lombok" )
Original file line number Diff line number Diff 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.2.2 " )
41- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
42- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
40+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
41+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
42+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
4343
4444 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
4545 testImplementation(" org.projectlombok:lombok" )
Original file line number Diff line number Diff 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.2.2 " )
31- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
32- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
30+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
31+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
32+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
3333
3434 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
3535}
Original file line number Diff line number Diff 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.2.2 " )
9- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
10- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
8+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
9+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
10+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
1111 implementation(" io.projectreactor:reactor-core" )
1212
1313 testImplementation(" org.junit.jupiter:junit-jupiter" )
Original file line number Diff line number Diff 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.2.2 " )
7- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
8- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
6+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
7+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
8+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
99}
Original file line number Diff line number Diff 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.2.2 " )
7- implementation(" org.springframework.data:spring-data-relational:2.2.2 " )
8- implementation(" org.springframework.data:spring-data-commons:2.5.2 " )
6+ implementation(" org.springframework.data:spring-data-jdbc:2.2.3 " )
7+ implementation(" org.springframework.data:spring-data-relational:2.2.3 " )
8+ implementation(" org.springframework.data:spring-data-commons:2.5.3 " )
99}
Original file line number Diff line number Diff line change 11compileJava. dependsOn(processResources)
22
33dependencies {
4- compile(" org.springframework.data:spring-data-jdbc:2.2.2 " )
5- compile(" org.springframework.data:spring-data-relational:2.2.2 " )
6- compile(" org.springframework.data:spring-data-commons:2.5.2 " )
4+ compile(" org.springframework.data:spring-data-jdbc:2.2.3 " )
5+ compile(" org.springframework.data:spring-data-relational:2.2.3 " )
6+ compile(" org.springframework.data:spring-data-commons:2.5.3 " )
77
88 testImplementation(" org.junit.jupiter:junit-jupiter" )
99 testImplementation(" org.junit.jupiter:junit-jupiter-api" )
You can’t perform that action at this time.
0 commit comments