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
|
|
|
|
2017-11-08 01:14:03 +08:00
|
|
|
testCompile powerMock2Dependencies
|
|
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
2018-05-11 13:40:44 +08:00
|
|
|
testCompile 'io.projectreactor.ipc:reactor-netty'
|
|
|
|
testCompile 'io.projectreactor:reactor-test'
|
2017-11-08 01:14:03 +08:00
|
|
|
|
2017-03-21 04:18:08 +08:00
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|