2017-03-20 16:18:08 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-04 20:36:21 -04:00
|
|
|
management platform(project(":spring-security-dependencies"))
|
2021-04-04 08:31:47 -04:00
|
|
|
api project(':spring-security-core')
|
|
|
|
api project(':spring-security-oauth2-core')
|
|
|
|
api project(':spring-security-web')
|
|
|
|
api springCoreDependency
|
|
|
|
api 'com.nimbusds:oauth2-oidc-sdk'
|
2017-03-20 16:18:08 -04:00
|
|
|
|
2017-10-23 09:04:01 -04:00
|
|
|
optional project(':spring-security-oauth2-jose')
|
2018-05-11 01:40:44 -04:00
|
|
|
optional 'io.projectreactor:reactor-core'
|
|
|
|
optional 'org.springframework:spring-webflux'
|
2020-01-26 07:58:24 -05:00
|
|
|
optional 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
optional 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
2020-01-19 15:30:27 -05:00
|
|
|
optional 'org.springframework:spring-jdbc'
|
2020-06-26 01:58:56 -04:00
|
|
|
optional 'org.springframework:spring-r2dbc'
|
2017-09-26 11:19:00 -04:00
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testImplementation project(path: ':spring-security-oauth2-core', configuration: 'tests')
|
|
|
|
testImplementation project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
|
|
|
testImplementation powerMock2Dependencies
|
|
|
|
testImplementation 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
testImplementation 'io.projectreactor.netty:reactor-netty'
|
|
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
|
|
testImplementation 'io.projectreactor.tools:blockhound'
|
|
|
|
testImplementation 'org.skyscreamer:jsonassert'
|
|
|
|
testImplementation 'io.r2dbc:r2dbc-h2:0.8.4.RELEASE'
|
2021-10-18 15:20:00 -04:00
|
|
|
testImplementation 'io.r2dbc:r2dbc-spi-test:0.8.6.RELEASE'
|
2017-11-07 12:14:03 -05:00
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testRuntimeOnly 'org.hsqldb:hsqldb'
|
2020-01-19 15:30:27 -05:00
|
|
|
|
2017-03-20 16:18:08 -04:00
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|