33 lines
1.1 KiB
Groovy
33 lines
1.1 KiB
Groovy
// Core build file
|
|
|
|
def cryptoProject = project(':spring-security-crypto')
|
|
|
|
dependencies {
|
|
compile cryptoProject,
|
|
'aopalliance:aopalliance:1.0',
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
|
"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",
|
|
"org.aspectj:aspectjrt:$aspectjVersion",
|
|
'javax.annotation:jsr250-api:1.0'
|
|
|
|
testCompile 'commons-collections:commons-collections:3.2',
|
|
"org.springframework:spring-test:$springVersion",
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion"
|
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion"
|
|
}
|
|
|
|
// Add the crypto module classes
|
|
|
|
jar {
|
|
from cryptoProject.sourceSets.main.classes
|
|
}
|
|
|
|
bundlor.inputPath(cryptoProject.sourceSets.main.classes)
|