2014-08-15 17:39:22 -04:00
|
|
|
apply plugin: 'groovy'
|
|
|
|
|
|
|
|
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-messaging:$springVersion"
|
2014-08-15 17:39:22 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
optional project(':spring-security-web'),
|
|
|
|
"org.springframework:spring-websocket:$springVersion",
|
|
|
|
"javax.servlet:javax.servlet-api:$servletApiVersion"
|
2015-02-18 10:14:10 -05:00
|
|
|
|
2015-03-23 12:14:26 -04: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-15 17:39:22 -04:00
|
|
|
|
2015-03-23 12:14:26 -04:00
|
|
|
testRuntime "org.hsqldb:hsqldb:$hsqlVersion"
|
2014-08-15 17:39:22 -04:00
|
|
|
}
|