mirror of
https://github.com/corda/corda.git
synced 2025-02-21 17:56:54 +00:00
Don't start Corda webserver if no webAddress has been defined for a node (#1434)
Don't start Corda webserver if no webAddress has been defined for a node
This commit is contained in:
parent
8aaac437c0
commit
069e31d006
@ -1,4 +1,4 @@
|
|||||||
gradlePluginsVersion=0.16.1
|
gradlePluginsVersion=0.16.2
|
||||||
kotlinVersion=1.1.4
|
kotlinVersion=1.1.4
|
||||||
guavaVersion=21.0
|
guavaVersion=21.0
|
||||||
bouncycastleVersion=1.57
|
bouncycastleVersion=1.57
|
||||||
|
@ -10,6 +10,11 @@ the rest of the Corda libraries.
|
|||||||
currently known solution (such as publishing from buildSrc or setting up a separate project/repo) would
|
currently known solution (such as publishing from buildSrc or setting up a separate project/repo) would
|
||||||
introduce a two step build which is less convenient.
|
introduce a two step build which is less convenient.
|
||||||
|
|
||||||
|
Version number
|
||||||
|
--------------
|
||||||
|
|
||||||
|
To modify the version number edit constants.properties in root dir
|
||||||
|
|
||||||
Installing
|
Installing
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
@ -101,7 +101,9 @@ class Node extends CordformNode {
|
|||||||
protected void build() {
|
protected void build() {
|
||||||
configureRpcUsers()
|
configureRpcUsers()
|
||||||
installCordaJar()
|
installCordaJar()
|
||||||
installWebserverJar()
|
if (config.hasPath("webAddress")) {
|
||||||
|
installWebserverJar()
|
||||||
|
}
|
||||||
installBuiltPlugin()
|
installBuiltPlugin()
|
||||||
installCordapps()
|
installCordapps()
|
||||||
installConfig()
|
installConfig()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user