1
0
mirror of synced 2026-08-03 16:56:56 +00:00
Files
spring-security/web/spring-security-web.gradle
T

34 lines
1.2 KiB
Groovy
Raw Permalink Normal View History

2017-03-28 15:45:30 -05:00
apply plugin: 'io.spring.convention.spring-module'
dependencies {
compile project(':spring-security-core')
compile springCoreDependency
2017-07-01 17:03:31 +02:00
compile 'org.springframework:spring-aop'
2017-03-28 15:45:30 -05: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'
optional 'io.projectreactor:reactor-core'
2017-03-28 15:45:30 -05:00
optional 'org.springframework:spring-jdbc'
optional 'org.springframework:spring-tx'
optional 'org.springframework:spring-webflux'
2017-03-28 15:45:30 -05: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'
testCompile 'io.projectreactor:reactor-test'
2018-03-26 20:01:40 -05:00
testCompile 'javax.xml.bind:jaxb-api'
2017-03-28 15:45:30 -05:00
testCompile 'org.codehaus.groovy:groovy-all'
testCompile 'org.skyscreamer:jsonassert'
testCompile 'org.springframework:spring-webflux'
2019-10-28 14:05:42 -05:00
testCompile 'org.synchronoss.cloud:nio-multipart-parser'
2017-10-09 13:19:21 -05:00
testCompile powerMock2Dependencies
2017-03-28 15:45:30 -05:00
testCompile spockDependencies
testRuntime 'org.hsqldb:hsqldb'
}