2009-12-04 16:33:17 -05:00
|
|
|
// Core build file
|
|
|
|
|
2011-06-09 19:01:25 -04:00
|
|
|
// We don't define a module dependency on crypto to avoid creating a transitive dependency
|
|
|
|
def cryptoProject = project(':spring-security-crypto')
|
|
|
|
def cryptoClasses = cryptoProject.sourceSets.main.classes
|
|
|
|
|
2009-12-04 16:33:17 -05:00
|
|
|
dependencies {
|
2011-06-14 13:31:56 -04:00
|
|
|
compile cryptoProject,
|
|
|
|
'aopalliance:aopalliance:1.0',
|
2009-12-07 20:54:15 -05:00
|
|
|
"net.sf.ehcache:ehcache:$ehcacheVersion",
|
2009-12-04 16:33:17 -05: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",
|
2009-12-21 12:32:38 -05:00
|
|
|
"org.aspectj:aspectjrt:$aspectjVersion",
|
|
|
|
'javax.annotation:jsr250-api:1.0'
|
2009-12-04 16:33:17 -05:00
|
|
|
|
|
|
|
testCompile 'commons-collections:commons-collections:3.2',
|
2010-09-10 21:17:22 -04:00
|
|
|
"org.springframework:spring-test:$springVersion",
|
2010-09-11 06:01:12 -04:00
|
|
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion"
|
2010-02-26 19:41:16 -05:00
|
|
|
|
2011-04-22 08:33:56 -04:00
|
|
|
testRuntime "hsqldb:hsqldb:$hsqlVersion",
|
|
|
|
"cglib:cglib-nodep:$cglibVersion"
|
2009-12-04 16:33:17 -05:00
|
|
|
}
|
2011-03-07 12:44:38 -05:00
|
|
|
|
2011-06-09 19:01:25 -04:00
|
|
|
compileJava.dependsOn cryptoProject.compileJava
|
|
|
|
classes.dependsOn cryptoProject.classes
|
|
|
|
|
|
|
|
classes.doLast {
|
|
|
|
copy {
|
|
|
|
from cryptoClasses
|
|
|
|
into sourceSets.main.classesDir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets.main.compileClasspath += cryptoClasses
|
|
|
|
sourceSets.test.compileClasspath += cryptoClasses
|
|
|
|
|
|
|
|
sourceJar.from cryptoProject.sourceSets.main.java
|
2011-03-07 12:44:38 -05:00
|
|
|
|
2011-03-10 13:58:47 -05:00
|
|
|
test {
|
2011-05-07 12:15:02 -04:00
|
|
|
systemProperties['springSecurityVersion'] = version
|
|
|
|
systemProperties['springVersion'] = springVersion
|
2011-03-07 12:44:38 -05:00
|
|
|
}
|
2011-06-14 13:31:56 -04:00
|
|
|
|
|
|
|
// Add the crypto module in the IDE
|
|
|
|
ideaModule {
|
|
|
|
def cryptoDep = new org.gradle.plugins.ide.idea.model.ModuleDependency('spring-security-crypto', 'COMPILE')
|
|
|
|
cryptoDep.exported = true
|
|
|
|
module.dependencies.add(cryptoDep)
|
|
|
|
}
|