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'
|
2020-01-26 20:58:24 +08:00
|
|
|
optional 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
optional 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
2020-01-20 04:30:27 +08:00
|
|
|
optional 'org.springframework:spring-jdbc'
|
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'
|
2020-08-05 02:17:03 +08:00
|
|
|
testCompile 'io.projectreactor.netty:reactor-netty-http'
|
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'
|
2020-01-26 20:58:24 +08:00
|
|
|
testCompile 'org.skyscreamer:jsonassert'
|
2017-11-08 01:14:03 +08:00
|
|
|
|
2020-01-20 04:30:27 +08:00
|
|
|
testRuntime 'org.hsqldb:hsqldb'
|
|
|
|
|
2017-03-21 04:18:08 +08:00
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
}
|