2013-07-05 10:41:10 -04:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
dependencies {
|
2015-03-23 12:14:26 -04:00
|
|
|
compile project(':spring-security-core'),
|
|
|
|
springCoreDependency,
|
|
|
|
'aopalliance:aopalliance:1.0',
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
|
|
|
"org.springframework:spring-expression:$springVersion",
|
|
|
|
"org.springframework:spring-web:$springVersion"
|
2010-01-12 19:44:05 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
optional "org.springframework:spring-webmvc:$springVersion",
|
|
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
|
|
"org.springframework:spring-tx:$springVersion"
|
2013-08-15 15:49:21 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
provided "javax.servlet:javax.servlet-api:$servletApiVersion"
|
2010-01-12 19:44:05 -05:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
testCompile project(':spring-security-core').sourceSets.test.output,
|
|
|
|
'commons-codec:commons-codec:1.3',
|
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
|
|
"org.codehaus.groovy:groovy-all:$groovyVersion",
|
|
|
|
powerMockDependencies,
|
|
|
|
spockDependencies
|
2011-07-09 18:31:25 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
testRuntime "org.hsqldb:hsqldb:$hsqlVersion"
|
2012-06-29 18:46:13 -04:00
|
|
|
}
|