2016-11-17 11:03:40 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
2019-03-11 16:48:35 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
2016-11-17 11:03:40 +00:00
|
|
|
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
|
|
|
|
2019-03-11 16:48:35 +00:00
|
|
|
cordapp {
|
|
|
|
info {
|
|
|
|
name "Corda Attachment Demo"
|
|
|
|
vendor "R3"
|
|
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
|
|
minimumPlatformVersion 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
integrationTest {
|
|
|
|
kotlin {
|
|
|
|
compileClasspath += main.output + test.output
|
|
|
|
runtimeClasspath += main.output + test.output
|
|
|
|
srcDir file('src/integration-test/kotlin')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
integrationTestCompile.extendsFrom testCompile
|
2019-05-20 10:57:56 +00:00
|
|
|
integrationTestRuntimeOnly.extendsFrom testRuntimeOnly
|
2019-03-11 16:48:35 +00:00
|
|
|
}
|
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
dependencies {
|
2019-03-11 16:48:35 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
compile "net.sf.jopt-simple:jopt-simple:$jopt_simple_version"
|
2019-06-13 09:15:13 +00:00
|
|
|
compile "javax.servlet:javax.servlet-api:${servlet_version}"
|
|
|
|
compile "javax.ws.rs:javax.ws.rs-api:2.1.1"
|
2019-03-11 16:48:35 +00:00
|
|
|
cordaCompile project(':client:rpc')
|
|
|
|
|
|
|
|
// Cordformation needs a SLF4J implementation when executing the Network
|
|
|
|
// Bootstrapper, but Log4J doesn't shutdown completely from within Gradle.
|
|
|
|
// Use a much simpler SLF4J implementation here instead.
|
2019-05-20 10:57:56 +00:00
|
|
|
cordaRuntime "org.slf4j:slf4j-simple:$slf4j_version"
|
2019-03-11 16:48:35 +00:00
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
// 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')
|
2019-03-11 16:48:35 +00:00
|
|
|
|
|
|
|
testCompile(project(':node-driver')) {
|
|
|
|
// We already have a SLF4J implementation on our runtime classpath,
|
|
|
|
// and we don't need another one.
|
|
|
|
exclude group: 'org.apache.logging.log4j', module: 'log4j-slf4j-impl'
|
|
|
|
}
|
2019-05-15 15:40:12 +00:00
|
|
|
|
|
|
|
testImplementation "org.junit.jupiter:junit-jupiter-api:${junit_jupiter_version}"
|
2019-05-20 10:57:56 +00:00
|
|
|
testImplementation "junit:junit:$junit_version"
|
2019-05-15 15:40:12 +00:00
|
|
|
|
2019-05-20 10:57:56 +00:00
|
|
|
testRuntimeOnly "org.junit.vintage:junit-vintage-engine:${junit_vintage_version}"
|
2019-05-15 15:40:12 +00:00
|
|
|
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${junit_jupiter_version}"
|
|
|
|
testRuntimeOnly "org.junit.platform:junit-platform-launcher:${junit_platform_version}"
|
2019-05-20 10:57:56 +00:00
|
|
|
|
2019-03-11 16:48:35 +00:00
|
|
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
|
|
|
|
|
|
|
integrationTestCompile project(':webserver')
|
|
|
|
}
|
|
|
|
|
|
|
|
task integrationTest(type: Test, dependsOn: []) {
|
|
|
|
testClassesDirs = sourceSets.integrationTest.output.classesDirs
|
|
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-11 16:48:35 +00:00
|
|
|
task runSender(type: JavaExec, dependsOn: jar) {
|
2016-11-17 18:10:00 +00:00
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
2019-03-11 16:48:35 +00:00
|
|
|
main = 'net.corda.attachmentdemo.AttachmentDemoKt'
|
2016-11-17 18:10:00 +00:00
|
|
|
args '--role'
|
|
|
|
args 'SENDER'
|
|
|
|
}
|
|
|
|
|
2019-03-11 16:48:35 +00:00
|
|
|
task runRecipient(type: JavaExec, dependsOn: jar) {
|
2016-11-17 18:10:00 +00:00
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
2019-03-11 16:48:35 +00:00
|
|
|
main = 'net.corda.attachmentdemo.AttachmentDemoKt'
|
2016-11-17 18:10:00 +00:00
|
|
|
args '--role'
|
|
|
|
args 'RECIPIENT'
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|