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