mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-02-22 22:46:15 +00:00
Implement R2dbcReactiveOuath2AuthorizedClientService which persists the Oauth2AuthorizedClient in a sql database R2dbcReactiveOuath2AuthorizedClientService is using the spring-r2dbc module to persist/load Oauth2AuthorizedClient to/from a sql database Add optional depedency to the spring-r2dbc module Add test compile dependencies to r2dbc-h2 and r2dbc-test Closes gh-7890
33 lines
1.2 KiB
Groovy
33 lines
1.2 KiB
Groovy
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
dependencies {
|
|
compile project(':spring-security-core')
|
|
compile project(':spring-security-oauth2-core')
|
|
compile project(':spring-security-web')
|
|
compile springCoreDependency
|
|
compile 'com.nimbusds:oauth2-oidc-sdk'
|
|
|
|
optional project(':spring-security-oauth2-jose')
|
|
optional 'io.projectreactor:reactor-core'
|
|
optional 'org.springframework:spring-webflux'
|
|
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')
|
|
testCompile powerMock2Dependencies
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
testCompile 'io.projectreactor.netty:reactor-netty'
|
|
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.3.RELEASE'
|
|
|
|
testRuntime 'org.hsqldb:hsqldb'
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
}
|