Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ version=5.5.0-SNAPSHOT
kotlinVersion=1.4.10
org.gradle.jvmargs=-Xmx3g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.caching=true
6 changes: 3 additions & 3 deletions gradle/dependency-management.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
if (!project.hasProperty("reactorVersion")) {
ext.reactorVersion = "Dysprosium-SR+"
ext.reactorVersion = "2020.0.0-RC2"
}

if (!project.hasProperty("springVersion")) {
ext.springVersion = "5.2.+"
ext.springVersion = "5.3.+"
}

if (!project.hasProperty("springDataVersion")) {
Expand All @@ -13,7 +13,7 @@ if (!project.hasProperty("kotlinVersion")) {
ext.kotlinVersion = "1.+"
}
if (!project.hasProperty("rsocketVersion")) {
ext.rsocketVersion = "1.0.+"
ext.rsocketVersion = "1.1.+"
}
if (!project.hasProperty("locksDisabled")) {
dependencyLocking {
Expand Down
3 changes: 3 additions & 0 deletions oauth2/oauth2-client/spring-security-oauth2-client.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ dependencies {
optional 'com.fasterxml.jackson.core:jackson-databind'
optional 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
optional 'org.springframework:spring-jdbc'
optional 'org.springframework:spring-r2dbc'

testCompile project(path: ':spring-security-oauth2-core', configuration: 'tests')
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
Expand All @@ -22,6 +23,8 @@ dependencies {
testCompile 'io.projectreactor:reactor-test'
testCompile 'io.projectreactor.tools:blockhound'
testCompile 'org.skyscreamer:jsonassert'
testCompile 'io.r2dbc:r2dbc-h2:0.8.4.RELEASE'
testCompile 'io.r2dbc:r2dbc-spi-test:0.8.1.RELEASE'

testRuntime 'org.hsqldb:hsqldb'

Expand Down
Loading