2017-03-20 16:18:08 -04:00
|
|
|
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
|
2017-06-27 11:45:19 -04:00
|
|
|
compile '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'
|
2017-09-26 11:19:00 -04:00
|
|
|
|
2018-08-07 22:49:19 -04:00
|
|
|
testCompile project(path: ':spring-security-oauth2-core', configuration: 'tests')
|
2019-09-16 11:00:04 -04:00
|
|
|
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
2017-11-07 12:14:03 -05:00
|
|
|
testCompile powerMock2Dependencies
|
|
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
2018-06-04 14:52:42 -04:00
|
|
|
testCompile 'io.projectreactor.netty:reactor-netty'
|
2018-05-11 01:40:44 -04:00
|
|
|
testCompile 'io.projectreactor:reactor-test'
|
2019-06-21 10:50:38 -04:00
|
|
|
testCompile 'io.projectreactor.tools:blockhound'
|
2017-11-07 12:14:03 -05:00
|
|
|
|
2017-03-20 16:18:08 -04:00
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|