2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-04 20:36:21 -04:00
|
|
|
management platform(project(":spring-security-dependencies"))
|
2021-04-04 08:31:47 -04:00
|
|
|
api project(':spring-security-core')
|
|
|
|
api project(':spring-security-web')
|
|
|
|
api 'org.springframework:spring-core'
|
|
|
|
api 'org.springframework:spring-test'
|
2017-03-28 16:45:30 -04:00
|
|
|
|
|
|
|
optional project(':spring-security-config')
|
2019-11-04 17:17:03 -05:00
|
|
|
optional project(':spring-security-oauth2-client')
|
2019-05-08 14:55:04 -04:00
|
|
|
optional project(':spring-security-oauth2-jose')
|
2019-05-21 19:59:55 -04:00
|
|
|
optional project(':spring-security-oauth2-resource-server')
|
2017-05-19 15:40:40 -04:00
|
|
|
optional 'io.projectreactor:reactor-core'
|
2020-05-27 16:33:02 -04:00
|
|
|
optional 'org.springframework:spring-webmvc'
|
2017-07-13 21:47:09 -04:00
|
|
|
optional 'org.springframework:spring-webflux'
|
2017-03-28 16:45:30 -04:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
|
2021-04-04 08:31:47 -04:00
|
|
|
testImplementation project(path : ':spring-security-config', configuration : 'tests')
|
|
|
|
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
|
|
testImplementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'
|
|
|
|
testImplementation 'io.projectreactor:reactor-test'
|
|
|
|
testImplementation 'javax.xml.bind:jaxb-api'
|
|
|
|
testImplementation 'org.skyscreamer:jsonassert'
|
|
|
|
testImplementation 'org.springframework:spring-webmvc'
|
|
|
|
testImplementation 'org.springframework:spring-tx'
|
|
|
|
testImplementation powerMock2Dependencies
|
2017-03-28 16:45:30 -04:00
|
|
|
}
|