2017-03-28 16:45:30 -04:00
|
|
|
apply plugin: 'io.spring.convention.spring-module'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':spring-security-core')
|
|
|
|
compile springCoreDependency
|
2017-07-01 11:03:31 -04:00
|
|
|
compile 'org.springframework:spring-aop'
|
2017-03-28 16:45:30 -04:00
|
|
|
compile 'org.springframework:spring-beans'
|
|
|
|
compile 'org.springframework:spring-context'
|
|
|
|
compile 'org.springframework:spring-expression'
|
|
|
|
compile 'org.springframework:spring-web'
|
|
|
|
|
|
|
|
optional 'com.fasterxml.jackson.core:jackson-databind'
|
2017-10-12 14:45:23 -04:00
|
|
|
optional 'io.projectreactor:reactor-core'
|
2017-03-28 16:45:30 -04:00
|
|
|
optional 'org.springframework:spring-jdbc'
|
|
|
|
optional 'org.springframework:spring-tx'
|
2017-10-12 14:45:23 -04:00
|
|
|
optional 'org.springframework:spring-webflux'
|
2017-03-28 16:45:30 -04:00
|
|
|
optional 'org.springframework:spring-webmvc'
|
|
|
|
|
|
|
|
provided 'javax.servlet:javax.servlet-api'
|
|
|
|
|
|
|
|
testCompile project(path: ':spring-security-core', configuration: 'tests')
|
|
|
|
testCompile 'commons-codec:commons-codec'
|
2017-10-12 14:45:23 -04:00
|
|
|
testCompile 'io.projectreactor:reactor-test'
|
2018-03-26 21:01:40 -04:00
|
|
|
testCompile 'javax.xml.bind:jaxb-api'
|
2017-03-28 16:45:30 -04:00
|
|
|
testCompile 'org.skyscreamer:jsonassert'
|
2017-10-12 14:45:23 -04:00
|
|
|
testCompile 'org.springframework:spring-webflux'
|
2019-10-28 15:05:42 -04:00
|
|
|
testCompile 'org.synchronoss.cloud:nio-multipart-parser'
|
2017-10-09 14:19:21 -04:00
|
|
|
testCompile powerMock2Dependencies
|
2017-03-28 16:45:30 -04:00
|
|
|
|
|
|
|
testRuntime 'org.hsqldb:hsqldb'
|
|
|
|
}
|