Initial inclusion of Corda and BankOfCorda JARs in distribution.

This commit is contained in:
Chris Rankin 2017-02-03 17:30:30 +00:00
parent 6985ade241
commit a0749e29ef

View File

@ -1,6 +1,3 @@
group 'net.corda'
version "$corda_version"
buildscript {
ext.kotlin_version = '1.0.6'
ext.tornadofx_version = '1.6.0'
@ -89,6 +86,15 @@ distributions {
into('lib/win') {
from 'libs/win'
}
// from(project(':tools:explorer:capsule').tasks.buildExplorerJAR) {
// into 'explorer'
// }
from(project(':node:capsule').tasks.buildCordaJAR) {
into 'corda'
}
from(project(':samples:bank-of-corda-demo').jar) {
into 'plugins'
}
}
}
}