mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
ENT-12287: Update cordformation version to 5.0.18-RC02
This commit is contained in:
parent
ef484a3543
commit
d57fc0e710
28
build.gradle
28
build.gradle
@ -158,6 +158,20 @@ buildscript {
|
|||||||
}()
|
}()
|
||||||
ext.corda_docs_link = "https://docs.corda.net/docs/corda-os/$baseVersion"
|
ext.corda_docs_link = "https://docs.corda.net/docs/corda-os/$baseVersion"
|
||||||
repositories {
|
repositories {
|
||||||
|
maven {
|
||||||
|
url "${artifactory_contextUrl}/corda-dev"
|
||||||
|
authentication {
|
||||||
|
basic(BasicAuthentication)
|
||||||
|
}
|
||||||
|
credentials {
|
||||||
|
username = findProperty('cordaArtifactoryUsername') ?: System.getenv('CORDA_ARTIFACTORY_USERNAME')
|
||||||
|
password = findProperty('cordaArtifactoryPassword') ?: System.getenv('CORDA_ARTIFACTORY_PASSWORD')
|
||||||
|
}
|
||||||
|
content {
|
||||||
|
includeGroupByRegex 'net\\.corda(\\..*)?'
|
||||||
|
includeGroupByRegex 'com\\.r3(\\..*)?'
|
||||||
|
}
|
||||||
|
}
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
// Use system environment to activate caching with Artifactory,
|
// Use system environment to activate caching with Artifactory,
|
||||||
// because it is actually easier to pass that during parallel build.
|
// because it is actually easier to pass that during parallel build.
|
||||||
@ -414,6 +428,20 @@ allprojects {
|
|||||||
version "$corda_release_version"
|
version "$corda_release_version"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
maven {
|
||||||
|
url "${artifactory_contextUrl}/corda-dev"
|
||||||
|
authentication {
|
||||||
|
basic(BasicAuthentication)
|
||||||
|
}
|
||||||
|
credentials {
|
||||||
|
username = findProperty('cordaArtifactoryUsername') ?: System.getenv('CORDA_ARTIFACTORY_USERNAME')
|
||||||
|
password = findProperty('cordaArtifactoryPassword') ?: System.getenv('CORDA_ARTIFACTORY_PASSWORD')
|
||||||
|
}
|
||||||
|
content {
|
||||||
|
includeGroupByRegex 'net\\.corda(\\..*)?'
|
||||||
|
includeGroupByRegex 'com\\.r3(\\..*)?'
|
||||||
|
}
|
||||||
|
}
|
||||||
mavenLocal()
|
mavenLocal()
|
||||||
// Prevents cache giving use the wrong artemis
|
// Prevents cache giving use the wrong artemis
|
||||||
mavenCentral {
|
mavenCentral {
|
||||||
|
@ -12,7 +12,7 @@ quasarVersion=0.7.15_r3
|
|||||||
metricsNewRelicVersion=1.1.1
|
metricsNewRelicVersion=1.1.1
|
||||||
cordaVersion=4.9.11
|
cordaVersion=4.9.11
|
||||||
openSourceSamplesBranch=https\://github.com/corda/samples/blob/release-V4
|
openSourceSamplesBranch=https\://github.com/corda/samples/blob/release-V4
|
||||||
gradlePluginsVersion=5.0.12
|
gradlePluginsVersion=5.0.18-RC02
|
||||||
proguardVersion=6.1.1
|
proguardVersion=6.1.1
|
||||||
java8MinUpdateVersion=171
|
java8MinUpdateVersion=171
|
||||||
quasarVersion11=0.8.1_r3
|
quasarVersion11=0.8.1_r3
|
||||||
|
@ -103,7 +103,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask,
|
|||||||
]
|
]
|
||||||
p2pPort 10002
|
p2pPort 10002
|
||||||
cordapps = []
|
cordapps = []
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
address "localhost:10003"
|
address "localhost:10003"
|
||||||
adminAddress "localhost:10004"
|
adminAddress "localhost:10004"
|
||||||
@ -114,7 +122,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask,
|
|||||||
name "O=Bank A,L=London,C=GB"
|
name "O=Bank A,L=London,C=GB"
|
||||||
p2pPort 10005
|
p2pPort 10005
|
||||||
cordapps = []
|
cordapps = []
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
address "localhost:10006"
|
address "localhost:10006"
|
||||||
adminAddress "localhost:10007"
|
adminAddress "localhost:10007"
|
||||||
@ -130,7 +146,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask,
|
|||||||
}
|
}
|
||||||
webPort 10010
|
webPort 10010
|
||||||
cordapps = []
|
cordapps = []
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
extraConfig = ['h2Settings.address': 'localhost:10014']
|
extraConfig = ['h2Settings.address': 'localhost:10014']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,7 +57,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask])
|
|||||||
name "O=Bank A,L=London,C=GB"
|
name "O=Bank A,L=London,C=GB"
|
||||||
p2pPort 10005
|
p2pPort 10005
|
||||||
cordapps = []
|
cordapps = []
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
port 10007
|
port 10007
|
||||||
adminPort 10008
|
adminPort 10008
|
||||||
@ -68,7 +76,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask])
|
|||||||
name "O=Bank B,L=New York,C=US"
|
name "O=Bank B,L=New York,C=US"
|
||||||
p2pPort 10009
|
p2pPort 10009
|
||||||
cordapps = []
|
cordapps = []
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
port 10011
|
port 10011
|
||||||
adminPort 10012
|
adminPort 10012
|
||||||
|
@ -105,7 +105,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask])
|
|||||||
node {
|
node {
|
||||||
name "O=Bank A,L=London,C=GB"
|
name "O=Bank A,L=London,C=GB"
|
||||||
p2pPort 10005
|
p2pPort 10005
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
address "localhost:10006"
|
address "localhost:10006"
|
||||||
adminAddress "localhost:10007"
|
adminAddress "localhost:10007"
|
||||||
@ -115,7 +123,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask])
|
|||||||
node {
|
node {
|
||||||
name "O=Bank B,L=New York,C=US"
|
name "O=Bank B,L=New York,C=US"
|
||||||
p2pPort 10008
|
p2pPort 10008
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
address "localhost:10009"
|
address "localhost:10009"
|
||||||
adminAddress "localhost:10010"
|
adminAddress "localhost:10010"
|
||||||
@ -125,7 +141,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask])
|
|||||||
node {
|
node {
|
||||||
name "O=BankOfCorda,L=New York,C=US"
|
name "O=BankOfCorda,L=New York,C=US"
|
||||||
p2pPort 10011
|
p2pPort 10011
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
address "localhost:10012"
|
address "localhost:10012"
|
||||||
adminAddress "localhost:10013"
|
adminAddress "localhost:10013"
|
||||||
@ -137,7 +161,15 @@ task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask])
|
|||||||
node {
|
node {
|
||||||
name "O=NonLogging Bank,L=London,C=GB"
|
name "O=NonLogging Bank,L=London,C=GB"
|
||||||
p2pPort 10025
|
p2pPort 10025
|
||||||
rpcUsers = ext.rpcUsers
|
rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
||||||
|
"InvokeRpc.partiesFromName",
|
||||||
|
"InvokeRpc.notaryPartyFromX500Name",
|
||||||
|
"InvokeRpc.attachmentExists",
|
||||||
|
"InvokeRpc.openAttachment",
|
||||||
|
"InvokeRpc.uploadAttachment",
|
||||||
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
||||||
|
"InvokeRpc.startTrackedFlowDynamic",
|
||||||
|
"InvokeRpc.nodeInfo"]]]
|
||||||
rpcSettings {
|
rpcSettings {
|
||||||
address "localhost:10026"
|
address "localhost:10026"
|
||||||
adminAddress "localhost:10027"
|
adminAddress "localhost:10027"
|
||||||
|
Loading…
Reference in New Issue
Block a user