Fixed deploynodes not producing any artifacts for cordformation.

This commit is contained in:
Clinton Alexander 2016-11-18 17:15:55 +00:00
parent e5d7f3fb98
commit 48c0f75349
4 changed files with 4 additions and 4 deletions

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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.