Merged in clint-deploynodesfix (pull request )

Fixed deploynodes not producing any artifacts for cordformation.
This commit is contained in:
Clinton Alexander 2016-11-18 17:59:07 +00:00
commit 2e4569ca01
4 changed files with 4 additions and 4 deletions
samples
attachment-demo
irs-demo
simm-valuation-demo
trader-demo

@ -78,7 +78,7 @@ dependencies {
}
}
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install', 'build']) {
directory "./build/nodes"
networkMap "Controller"
node {

@ -78,7 +78,7 @@ dependencies {
compile 'com.squareup.okhttp3:okhttp:3.3.1'
}
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install', 'build']) {
directory "./build/nodes"
networkMap "Notary"
node {

@ -78,7 +78,7 @@ dependencies {
compile "com.opengamma.strata:strata-math:${strata_version}"
}
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install', 'build']) {
directory "./build/nodes"
networkMap "Controller"
node {

@ -80,7 +80,7 @@ dependencies {
// Specify your cordapp's dependencies below, including dependent cordapps
}
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install', 'build']) {
directory "./build/nodes"
// This name "Notary" is hard-coded into TraderDemoClientApi so if you change it here, change it there too.
// In this demo the node that runs a standalone notary also acts as the network map server.