2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':spring-security-core')
|
|
|
|
compile project(':spring-security-web')
|
|
|
|
compile 'org.springframework:spring-core'
|
|
|
|
compile 'org.springframework:spring-test'
|
|
|
|
|
|
|
|
optional project(':spring-security-config')
|
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'
|
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'
|
|
|
|
|
2019-08-16 07:43:39 -04:00
|
|
|
testCompile project(path : ':spring-security-config', configuration : 'tests')
|
2017-07-13 21:47:09 -04:00
|
|
|
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
2017-08-17 12:15:28 -04:00
|
|
|
testCompile 'io.projectreactor:reactor-test'
|
2018-03-26 21:01:40 -04:00
|
|
|
testCompile 'javax.xml.bind:jaxb-api'
|
2017-07-13 21:47:09 -04:00
|
|
|
testCompile 'org.skyscreamer:jsonassert'
|
2017-03-28 16:45:30 -04:00
|
|
|
testCompile 'org.springframework:spring-webmvc'
|
|
|
|
testCompile 'org.springframework:spring-tx'
|
2017-10-09 14:19:21 -04:00
|
|
|
testCompile powerMock2Dependencies
|
2017-03-28 16:45:30 -04:00
|
|
|
}
|