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