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'),
|
2014-11-21 06:16:22 +08:00
|
|
|
springCoreDependency,
|
2009-12-05 05:33:17 +08:00
|
|
|
'aopalliance:aopalliance:1.0',
|
|
|
|
"org.springframework:spring-beans:$springVersion",
|
|
|
|
"org.springframework:spring-context:$springVersion",
|
2013-08-26 08:47:57 +08:00
|
|
|
"org.springframework:spring-expression:$springVersion",
|
2010-07-12 19:30:21 +08:00
|
|
|
"org.springframework:spring-web:$springVersion"
|
2010-01-13 08:44:05 +08:00
|
|
|
|
2013-08-26 04:52:17 +08:00
|
|
|
optional "org.springframework:spring-webmvc:$springVersion",
|
|
|
|
"org.springframework:spring-jdbc:$springVersion",
|
|
|
|
"org.springframework:spring-tx:$springVersion"
|
2013-08-16 03:49:21 +08:00
|
|
|
|
2014-04-02 21:48:55 +08:00
|
|
|
provided "javax.servlet:javax.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",
|
2014-04-02 21:48:55 +08:00
|
|
|
"org.codehaus.groovy:groovy-all:$groovyVersion",
|
2014-04-02 02:42:21 +08:00
|
|
|
powerMockDependencies,
|
|
|
|
spockDependencies
|
2011-07-10 06:31:25 +08:00
|
|
|
|
2013-12-14 09:21:10 +08:00
|
|
|
testRuntime "org.hsqldb:hsqldb:$hsqlVersion"
|
2012-06-30 06:46:13 +08:00
|
|
|
}
|