SEC-1689: Package crypto module classes with core.

This commit is contained in:
Luke Taylor 2011-03-07 17:44:38 +00:00
parent db6edfb512
commit 9d45828cb0
1 changed files with 12 additions and 1 deletions

View File

@ -1,7 +1,10 @@
// Core build file // Core build file
def cryptoProject = project(':spring-security-crypto')
dependencies { dependencies {
compile 'aopalliance:aopalliance:1.0', compile cryptoProject,
'aopalliance:aopalliance:1.0',
"net.sf.ehcache:ehcache:$ehcacheVersion", "net.sf.ehcache:ehcache:$ehcacheVersion",
"org.springframework:spring-aop:$springVersion", "org.springframework:spring-aop:$springVersion",
"org.springframework:spring-beans:$springVersion", "org.springframework:spring-beans:$springVersion",
@ -19,3 +22,11 @@ dependencies {
testRuntime "hsqldb:hsqldb:$hsqlVersion" testRuntime "hsqldb:hsqldb:$hsqlVersion"
} }
// Add the crypto module classes
jar {
from cryptoProject.sourceSets.main.classes
}
bundlor.inputPath(cryptoProject.sourceSets.main.classes)