2017-03-29 04:45:30 +08: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-11-05 06:17:03 +08:00
|
|
|
optional project(':spring-security-oauth2-client')
|
2019-05-09 02:55:04 +08:00
|
|
|
optional project(':spring-security-oauth2-jose')
|
2019-05-22 07:59:55 +08:00
|
|
|
optional project(':spring-security-oauth2-resource-server')
|
2017-05-20 03:40:40 +08:00
|
|
|
optional 'io.projectreactor:reactor-core'
|
2017-07-14 09:47:09 +08:00
|
|
|
optional 'org.springframework:spring-webflux'
|
2017-03-29 04:45:30 +08:00
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
|
2019-08-16 19:43:39 +08:00
|
|
|
testCompile project(path : ':spring-security-config', configuration : 'tests')
|
2017-07-14 09:47:09 +08:00
|
|
|
testCompile 'com.fasterxml.jackson.core:jackson-databind'
|
2017-08-18 00:15:28 +08:00
|
|
|
testCompile 'io.projectreactor:reactor-test'
|
2018-03-27 09:01:40 +08:00
|
|
|
testCompile 'javax.xml.bind:jaxb-api'
|
2017-07-14 09:47:09 +08:00
|
|
|
testCompile 'org.skyscreamer:jsonassert'
|
2017-03-29 04:45:30 +08:00
|
|
|
testCompile 'org.springframework:spring-webmvc'
|
|
|
|
testCompile 'org.springframework:spring-tx'
|
2017-10-10 02:19:21 +08:00
|
|
|
testCompile powerMock2Dependencies
|
2017-03-29 04:45:30 +08:00
|
|
|
}
|