[CORDA-682]: Claim Jigsaw module names (#1824)

[CORDA-682] Specify Jigsaw module names for all JAR projects.
This commit is contained in:
Michele Sollecito
2017-10-06 15:37:33 +01:00
committed by GitHub
parent 7c8a23aea6
commit 0b35a99c5a
23 changed files with 194 additions and 70 deletions

View File

@ -121,3 +121,11 @@ task runSeller(type: JavaExec) {
args '--role'
args 'SELLER'
}
jar {
manifest {
attributes(
'Automatic-Module-Name': 'net.corda.samples.demos.trader'
)
}
}