mirror of
https://github.com/corda/corda.git
synced 2025-06-19 15:43:52 +00:00
Changed dependencies of deployNodes everywhere to depend on the jar task and not build to reduce build time. (#502)
This commit is contained in:
@ -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 {
|
||||
|
@ -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 {
|
||||
|
@ -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 {
|
||||
|
Reference in New Issue
Block a user