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

@ -192,7 +192,7 @@ is a three node example;
.. code-block:: text
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
directory "./build/nodes" // The output directory
networkMap "Controller" // The artemis address of the node named here will be used as the networkMapService.address on all other nodes.
node {

View File

@ -74,7 +74,7 @@ task integrationTest(type: Test) {
classpath = sourceSets.integrationTest.runtimeClasspath
}
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['build']) {
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
directory "./build/nodes"
networkMap "Notary"
node {

View File

@ -772,7 +772,7 @@ like to deploy for testing. See further details below:
.. sourcecode:: groovy
task deployNodes(type: com.r3corda.plugins.Cordform, dependsOn: ['build']) {
task deployNodes(type: com.r3corda.plugins.Cordform, dependsOn: ['jar']) {
directory "./kotlin-source/build/nodes" // The output directory.
networkMap "Controller" // The artemis address of the node to be used as the network map.
node {