2018-06-12 23:33:26 -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
|
|
|
|
|
|
|
|
optional project(':spring-security-oauth2-jose')
|
2018-10-11 17:20:02 -04:00
|
|
|
optional 'com.nimbusds:oauth2-oidc-sdk'
|
2018-07-06 11:05:41 -04:00
|
|
|
optional 'io.projectreactor:reactor-core'
|
|
|
|
optional 'org.springframework:spring-webflux'
|
2018-06-12 23:33:26 -04:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
2018-07-06 11:05:41 -04:00
|
|
|
|
2019-09-16 11:00:04 -04:00
|
|
|
testCompile project(path: ':spring-security-oauth2-jose', configuration: 'tests')
|
2018-07-06 11:05:41 -04:00
|
|
|
testCompile 'com.squareup.okhttp3:mockwebserver'
|
|
|
|
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
2020-08-04 14:24:32 -04:00
|
|
|
testCompile 'io.projectreactor.netty:reactor-netty'
|
2018-07-06 11:05:41 -04:00
|
|
|
testCompile 'io.projectreactor:reactor-test'
|
2018-06-12 23:33:26 -04:00
|
|
|
}
|