2009-12-05 05:33:17 +08:00
|
|
|
// Web module build file
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
provided 'javax.servlet:servlet-api:2.5'
|
|
|
|
|
2010-09-14 02:12:45 +08:00
|
|
|
testCompile project(':spring-security-core').sourceSets.test.classes,
|
|
|
|
'commons-codec:commons-codec:1.3',
|
2010-07-12 19:30:21 +08:00
|
|
|
"org.springframework:spring-test:$springVersion"
|
2010-05-25 00:01:19 +08:00
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion"
|
2009-12-05 05:33:17 +08:00
|
|
|
}
|