Changed dependencies of deployNodes everywhere to depend on the jar task and not build to reduce build time. (#502)

This commit is contained in:
Clinton
2017-04-04 15:45:41 +01:00
committed by GitHub
parent a93692e434
commit b5c6f6053a
10 changed files with 13 additions and 12 deletions

View File

@ -58,7 +58,7 @@ dependencies {
// Specify your cordapp's dependencies below, including dependent cordapps
}
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
ext.rpcUsers = [['user': "demo", 'password': "demo", 'permissions': [
'StartFlow.net.corda.flows.IssuerFlow$IssuanceRequester',
"StartFlow.net.corda.traderdemo.flow.SellerFlow"