2016-11-17 11:03:40 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
apply plugin: 'net.corda.plugins.cordformation'
|
|
|
|
|
2019-01-23 13:26:33 +00:00
|
|
|
description 'Corda attachment demo'
|
2016-11-17 11:03:40 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
// Corda integration dependencies
|
2018-10-15 20:11:52 +00:00
|
|
|
cordaRuntime project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
|
|
|
cordaRuntime project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
2019-01-23 13:26:33 +00:00
|
|
|
|
|
|
|
cordapp project(':samples:attachment-demo:contracts')
|
|
|
|
cordapp project(':samples:attachment-demo:workflows')
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 20:11:52 +00:00
|
|
|
def nodeTask = tasks.getByPath(':node:capsule:assemble')
|
|
|
|
def webTask = tasks.getByPath(':webserver:webcapsule:assemble')
|
|
|
|
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar', nodeTask, webTask]) {
|
2017-11-21 11:20:17 +00:00
|
|
|
ext.rpcUsers = [['username': "demo", 'password': "demo", 'permissions': ["StartFlow.net.corda.attachmentdemo.AttachmentDemoFlow",
|
2019-01-23 13:26:33 +00:00
|
|
|
"InvokeRpc.partiesFromName",
|
2017-11-21 11:20:17 +00:00
|
|
|
"InvokeRpc.attachmentExists",
|
2017-12-04 13:50:25 +00:00
|
|
|
"InvokeRpc.openAttachment",
|
2017-11-21 11:20:17 +00:00
|
|
|
"InvokeRpc.uploadAttachment",
|
2019-01-23 13:26:33 +00:00
|
|
|
"InvokeRpc.internalVerifiedTransactionsFeed",
|
|
|
|
"InvokeRpc.startTrackedFlowDynamic"]]]
|
2017-01-06 13:35:07 +00:00
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
directory "./build/nodes"
|
2019-01-23 13:26:33 +00:00
|
|
|
nodeDefaults {
|
|
|
|
projectCordapp {
|
|
|
|
deploy = false
|
|
|
|
}
|
|
|
|
cordapp project(':samples:attachment-demo:contracts')
|
|
|
|
cordapp project(':samples:attachment-demo:workflows')
|
|
|
|
}
|
2016-11-17 11:03:40 +00:00
|
|
|
node {
|
2017-09-12 00:03:10 +00:00
|
|
|
name "O=Notary Service,L=Zurich,C=CH"
|
2019-01-23 13:26:33 +00:00
|
|
|
notary = [validating: true]
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10002
|
2016-11-17 11:03:40 +00:00
|
|
|
cordapps = []
|
2017-01-06 13:35:07 +00:00
|
|
|
rpcUsers = ext.rpcUsers
|
2018-01-25 14:32:58 +00:00
|
|
|
rpcSettings {
|
|
|
|
address "localhost:10003"
|
|
|
|
adminAddress "localhost:10004"
|
|
|
|
}
|
2019-01-23 13:26:33 +00:00
|
|
|
extraConfig = ['h2Settings.address': 'localhost:10012']
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
node {
|
2017-09-07 13:47:42 +00:00
|
|
|
name "O=Bank A,L=London,C=GB"
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10005
|
2016-11-17 11:03:40 +00:00
|
|
|
cordapps = []
|
2017-01-06 13:35:07 +00:00
|
|
|
rpcUsers = ext.rpcUsers
|
2018-01-25 14:32:58 +00:00
|
|
|
rpcSettings {
|
|
|
|
address "localhost:10006"
|
|
|
|
adminAddress "localhost:10007"
|
|
|
|
}
|
2019-01-23 13:26:33 +00:00
|
|
|
extraConfig = ['h2Settings.address': 'localhost:10013']
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
node {
|
2017-09-07 13:47:42 +00:00
|
|
|
name "O=Bank B,L=New York,C=US"
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10008
|
2018-01-25 14:32:58 +00:00
|
|
|
rpcSettings {
|
|
|
|
address "localhost:10009"
|
|
|
|
adminAddress "localhost:10011"
|
|
|
|
}
|
2017-05-03 12:21:26 +00:00
|
|
|
webPort 10010
|
2016-11-17 11:03:40 +00:00
|
|
|
cordapps = []
|
2017-01-06 13:35:07 +00:00
|
|
|
rpcUsers = ext.rpcUsers
|
2019-01-23 13:26:33 +00:00
|
|
|
extraConfig = ['h2Settings.address': 'localhost:10014']
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-17 18:10:00 +00:00
|
|
|
task runSender(type: JavaExec) {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
2019-01-23 13:26:33 +00:00
|
|
|
main = 'net.corda.attachmentdemo.workflows.AttachmentDemoKt'
|
2016-11-17 18:10:00 +00:00
|
|
|
args '--role'
|
|
|
|
args 'SENDER'
|
|
|
|
}
|
|
|
|
|
|
|
|
task runRecipient(type: JavaExec) {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
2019-01-23 13:26:33 +00:00
|
|
|
main = 'net.corda.attachmentdemo.workflows.AttachmentDemoKt'
|
2016-11-17 18:10:00 +00:00
|
|
|
args '--role'
|
|
|
|
args 'RECIPIENT'
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|