2014-08-16 05:39:22 +08:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
|
|
|
dependencies {
|
2015-03-24 00:14:26 +08: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-messaging:$springVersion"
|
2014-08-16 05:39:22 +08:00
|
|
|
|
2015-03-24 00:14:26 +08:00
|
|
|
optional project(':spring-security-web'),
|
|
|
|
"org.springframework:spring-websocket:$springVersion",
|
|
|
|
"javax.servlet:javax.servlet-api:$servletApiVersion"
|
2015-02-18 23:14:10 +08:00
|
|
|
|
2015-03-24 00:14:26 +08:00
|
|
|
testCompile project(':spring-security-core').sourceSets.test.output,
|
|
|
|
"commons-codec:commons-codec:$commonsCodecVersion",
|
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
|
|
|
"org.codehaus.groovy:groovy-all:$groovyVersion",
|
|
|
|
powerMockDependencies,
|
|
|
|
spockDependencies
|
2014-08-16 05:39:22 +08:00
|
|
|
|
2015-03-24 00:14:26 +08:00
|
|
|
testRuntime "org.hsqldb:hsqldb:$hsqlVersion"
|
2014-08-16 05:39:22 +08:00
|
|
|
}
|