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')
|
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'
|
|
|
|
|
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'
|
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
|
|
|
}
|