From 40bddd64032bafdf6ab8a06075e231a388f456af Mon Sep 17 00:00:00 2001 From: Clinton Alexander Date: Fri, 9 Dec 2016 17:45:06 +0000 Subject: [PATCH] Fix: Samples could not be deployed due to an incorrect build.gradle task target. --- samples/bank-of-corda-demo/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/bank-of-corda-demo/build.gradle b/samples/bank-of-corda-demo/build.gradle index d4b0471a01..71b58f1a6f 100644 --- a/samples/bank-of-corda-demo/build.gradle +++ b/samples/bank-of-corda-demo/build.gradle @@ -56,7 +56,7 @@ dependencies { compile "org.glassfish.jersey.core:jersey-server:${jersey_version}" } -task deployNodes(type: net.corda.plugins.Cordform, dependsOn: [':install', 'build']) { +task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) { directory "./build/nodes" // This name "Notary" is hard-coded into BankOfCordaClientApi 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.