@@ -118,6 +118,7 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
118118 // cordapp("$tokens_release_group:tokens-money:$tokens_release_version")
119119 cordapp project(' :contracts' )
120120 cordapp project(' :workflows' )
121+ runSchemaMigration = true
121122 }
122123 node {
123124 name " O=Notary,L=London,C=GB"
@@ -136,6 +137,8 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
136137 address(" localhost:10006" )
137138 adminAddress(" localhost:10046" )
138139 }
140+ extraConfig = [' h2Settings.address' : ' localhost:20041' ]
141+
139142 rpcUsers = [[ user : " user1" , " password" : " test" , " permissions" : [" ALL" ]]]
140143 }
141144 node {
@@ -145,6 +148,8 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
145148 address(" localhost:10009" )
146149 adminAddress(" localhost:10049" )
147150 }
151+ extraConfig = [' h2Settings.address' : ' localhost:20042' ]
152+
148153 rpcUsers = [[ user : " user1" , " password" : " test" , " permissions" : [" ALL" ]]]
149154 }
150155 node {
@@ -154,6 +159,20 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
154159 address(" localhost:10013" )
155160 adminAddress(" localhost:10052" )
156161 }
162+ extraConfig = [' h2Settings.address' : ' localhost:20043' ]
163+
164+ rpcUsers = [[ user : " user1" , " password" : " test" , " permissions" : [" ALL" ]]]
165+ }
166+
167+ node {
168+ name " O=PartyD,L=Mumbai,C=IN"
169+ p2pPort 10016
170+ rpcSettings {
171+ address(" localhost:10017" )
172+ adminAddress(" localhost:10057" )
173+ }
174+ extraConfig = [' h2Settings.address' : ' localhost:20044' ]
175+
157176 rpcUsers = [[ user : " user1" , " password" : " test" , " permissions" : [" ALL" ]]]
158177 }
159178}
@@ -163,4 +182,4 @@ task installQuasar(type: Copy) {
163182 from(configurations. quasar) {
164183 rename ' quasar-core(.*).jar' , ' quasar.jar'
165184 }
166- }
185+ }
0 commit comments