mirror of
https://github.com/corda/corda.git
synced 2024-12-27 08:22:35 +00:00
Remove component signature files from enclave's fat jar. (#34)
* Remove component signature files from enclave's fat jar. * Create fat jar using everything in the runtime configuration.
This commit is contained in:
parent
fdc73571e5
commit
a75dd409aa
@ -50,8 +50,12 @@ jar {
|
||||
from '../node/capsule/NOTICE' // Copy CDDL notice
|
||||
// Create a fat jar by packing all deps into the output
|
||||
from {
|
||||
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
|
||||
configurations.runtime.collect { it.isDirectory() ? it : zipTree(it) }
|
||||
}
|
||||
exclude "META-INF/*.DSA"
|
||||
exclude "META-INF/*.RSA"
|
||||
exclude "META-INF/*.SF"
|
||||
exclude "META-INF/*.MF"
|
||||
archiveName "corda-enclavelet.jar"
|
||||
manifest {
|
||||
attributes(
|
||||
|
Loading…
Reference in New Issue
Block a user