2016-11-17 11:03:40 +00:00
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
apply plugin: 'net.corda.plugins.publish-utils'
|
|
|
|
apply plugin: 'net.corda.plugins.cordformation'
|
|
|
|
apply plugin: 'maven-publish'
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
integrationTest {
|
|
|
|
kotlin {
|
|
|
|
compileClasspath += main.output + test.output
|
|
|
|
runtimeClasspath += main.output + test.output
|
|
|
|
srcDir file('src/integration-test/kotlin')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
configurations {
|
|
|
|
integrationTestCompile.extendsFrom testCompile
|
|
|
|
integrationTestRuntime.extendsFrom testRuntime
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2017-03-30 15:27:01 +00:00
|
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre8:$kotlin_version"
|
2016-11-17 11:03:40 +00:00
|
|
|
|
2017-08-15 08:14:15 +00:00
|
|
|
// The trader demo CorDapp depends upon Cash CorDapp features
|
|
|
|
cordapp project(':finance')
|
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
// Corda integration dependencies
|
2017-07-27 16:53:51 +00:00
|
|
|
cordaCompile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
|
|
|
cordaCompile project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
|
|
|
cordaCompile project(':core')
|
2016-11-17 11:03:40 +00:00
|
|
|
|
2016-12-06 16:16:47 +00:00
|
|
|
// Corda Plugins: dependent flows and services
|
2017-06-30 13:18:46 +00:00
|
|
|
cordapp project(':samples:bank-of-corda-demo')
|
2016-11-17 11:03:40 +00:00
|
|
|
|
2017-06-14 14:59:17 +00:00
|
|
|
testCompile project(':test-utils')
|
|
|
|
testCompile "junit:junit:$junit_version"
|
|
|
|
testCompile "org.assertj:assertj-core:${assertj_version}"
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 14:45:41 +00:00
|
|
|
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
|
2017-04-07 10:23:25 +00:00
|
|
|
ext.rpcUsers = [['username': "demo", 'password': "demo", 'permissions': [
|
2017-08-21 15:40:28 +00:00
|
|
|
'StartFlow.net.corda.finance.flows.CashIssueFlow',
|
|
|
|
'StartFlow.net.corda.finance.flows.CashPaymentFlow',
|
2017-08-11 09:20:27 +00:00
|
|
|
'StartFlow.net.corda.traderdemo.flow.CommercialPaperIssueFlow',
|
|
|
|
'StartFlow.net.corda.traderdemo.flow.SellerFlow'
|
2017-01-17 14:12:55 +00:00
|
|
|
]]]
|
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
directory "./build/nodes"
|
2016-11-17 17:04:12 +00:00
|
|
|
// This name "Notary" is hard-coded into TraderDemoClientApi so if you change it here, change it there too.
|
|
|
|
// In this demo the node that runs a standalone notary also acts as the network map server.
|
2017-08-01 12:59:20 +00:00
|
|
|
networkMap "CN=Notary Service,O=R3,OU=corda,L=Zurich,C=CH"
|
2016-11-17 11:03:40 +00:00
|
|
|
node {
|
2017-08-01 12:59:20 +00:00
|
|
|
name "CN=Notary Service,O=R3,OU=corda,L=Zurich,C=CH"
|
2016-11-17 11:03:40 +00:00
|
|
|
advertisedServices = ["corda.notary.validating"]
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10002
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
node {
|
2017-06-20 15:58:00 +00:00
|
|
|
name "CN=Bank A,O=Bank A,L=London,C=GB"
|
2016-11-17 11:03:40 +00:00
|
|
|
advertisedServices = []
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10005
|
|
|
|
rpcPort 10006
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2017-01-17 14:12:55 +00:00
|
|
|
rpcUsers = ext.rpcUsers
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
node {
|
2017-04-27 16:44:23 +00:00
|
|
|
name "CN=Bank B,O=Bank B,L=New York,C=US"
|
2016-11-17 11:03:40 +00:00
|
|
|
advertisedServices = []
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10008
|
|
|
|
rpcPort 10009
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2017-01-17 14:12:55 +00:00
|
|
|
rpcUsers = ext.rpcUsers
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
2016-12-06 16:16:47 +00:00
|
|
|
node {
|
2017-05-31 10:14:53 +00:00
|
|
|
name "CN=BankOfCorda,O=R3,L=New York,C=US"
|
2016-12-06 16:16:47 +00:00
|
|
|
advertisedServices = []
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10011
|
2017-08-11 09:20:27 +00:00
|
|
|
rpcPort 10012
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2017-08-11 09:20:27 +00:00
|
|
|
rpcUsers = ext.rpcUsers
|
2016-12-06 16:16:47 +00:00
|
|
|
}
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task integrationTest(type: Test, dependsOn: []) {
|
2017-08-24 15:46:54 +00:00
|
|
|
testClassesDirs = sourceSets.integrationTest.output.classesDirs
|
2016-11-17 11:03:40 +00:00
|
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
|
|
|
}
|
|
|
|
|
|
|
|
idea {
|
|
|
|
module {
|
|
|
|
downloadJavadoc = true // defaults to false
|
|
|
|
downloadSources = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
jarAndSources(MavenPublication) {
|
|
|
|
from components.java
|
|
|
|
artifactId 'traderdemo'
|
|
|
|
|
|
|
|
artifact sourceJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-17 17:04:12 +00:00
|
|
|
|
2017-08-11 09:20:27 +00:00
|
|
|
task runBank(type: JavaExec) {
|
2016-11-17 17:04:12 +00:00
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'net.corda.traderdemo.TraderDemoKt'
|
|
|
|
args '--role'
|
2017-08-11 09:20:27 +00:00
|
|
|
args 'BANK'
|
2016-11-17 17:04:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task runSeller(type: JavaExec) {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'net.corda.traderdemo.TraderDemoKt'
|
|
|
|
args '--role'
|
|
|
|
args 'SELLER'
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|