1
0
mirror of synced 2026-05-22 21:33:16 +00:00

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