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