mirror of
https://github.com/corda/corda.git
synced 2025-02-20 09:26:41 +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
|
||||
guavaVersion=21.0
|
||||
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
|
||||
introduce a two step build which is less convenient.
|
||||
|
||||
Version number
|
||||
--------------
|
||||
|
||||
To modify the version number edit constants.properties in root dir
|
||||
|
||||
Installing
|
||||
----------
|
||||
|
||||
|
@ -101,7 +101,9 @@ class Node extends CordformNode {
|
||||
protected void build() {
|
||||
configureRpcUsers()
|
||||
installCordaJar()
|
||||
installWebserverJar()
|
||||
if (config.hasPath("webAddress")) {
|
||||
installWebserverJar()
|
||||
}
|
||||
installBuiltPlugin()
|
||||
installCordapps()
|
||||
installConfig()
|
||||
|
Loading…
x
Reference in New Issue
Block a user