1
0
mirror of synced 2026-05-22 21:33:16 +00:00
Files
spring-security/web/spring-security-web.gradle
T

29 lines
938 B
Groovy
Raw 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 'org.springframework:spring-jdbc'
optional 'org.springframework:spring-tx'
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 'org.codehaus.groovy:groovy-all'
testCompile 'org.skyscreamer:jsonassert'
2017-10-09 13:19:21 -05:00
testCompile powerMock2Dependencies
2017-03-28 15:45:30 -05:00
testCompile spockDependencies
testCompile slf4jDependencies
testRuntime 'org.hsqldb:hsqldb'
}