2009-12-05 05:33:17 +08:00
|
|
|
// Core build file
|
|
|
|
|
2011-03-08 01:44:38 +08:00
|
|
|
def cryptoProject = project(':spring-security-crypto')
|
|
|
|
|
2009-12-05 05:33:17 +08:00
|
|
|
dependencies {
|
2011-03-08 01:44:38 +08:00
|
|
|
compile cryptoProject,
|
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-08 09:54:15 +08:00
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
2009-12-05 05:33:17 +08:00
|
|
|
"org.springframework:spring-aop:$springVersion",
|
|
|
|
"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",
|
|
|
|
"org.springframework:spring-web:$springVersion",
|
2009-12-22 01:32:38 +08:00
|
|
|
"org.aspectj:aspectjrt:$aspectjVersion",
|
|
|
|
'javax.annotation:jsr250-api:1.0'
|
2009-12-05 05:33:17 +08:00
|
|
|
|
|
|
|
testCompile 'commons-collections:commons-collections:3.2',
|
2010-09-11 09:17:22 +08:00
|
|
|
"org.springframework:spring-test:$springVersion",
|
2010-09-11 18:01:12 +08:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion"
|
2010-02-27 08:41:16 +08:00
|
|
|
|
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion"
|
2009-12-05 05:33:17 +08:00
|
|
|
}
|
2011-03-08 01:44:38 +08:00
|
|
|
|
|
|
|
// Add the crypto module classes
|
|
|
|
|
|
|
|
jar {
|
|
|
|
from cryptoProject.sourceSets.main.classes
|
|
|
|
}
|
|
|
|
|
|
|
|
bundlor.inputPath(cryptoProject.sourceSets.main.classes)
|