SEC-1689: Package crypto module classes with core.
This commit is contained in:
parent
db6edfb512
commit
9d45828cb0
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue