spring-security/oauth2/oauth2-client/spring-security-oauth2-clie...

25 lines
918 B
Groovy
Raw Normal View History

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
compile 'com.nimbusds:oauth2-oidc-sdk'
optional project(':spring-security-oauth2-jose')
2018-05-11 01:40:44 -04:00
optional 'io.projectreactor:reactor-core'
optional 'org.springframework:spring-webflux'
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')
testCompile powerMock2Dependencies
testCompile 'com.squareup.okhttp3:mockwebserver'
testCompile 'com.fasterxml.jackson.core:jackson-databind'
testCompile 'io.projectreactor.netty:reactor-netty'
2018-05-11 01:40:44 -04:00
testCompile 'io.projectreactor:reactor-test'
testCompile 'io.projectreactor.tools:blockhound'
provided 'javax.servlet:javax.servlet-api'
}