2016-11-18 17:51:12 +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'
|
2017-10-09 19:08:08 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
2016-11-18 17:51:12 +00:00
|
|
|
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-18 17:51:12 +00:00
|
|
|
|
2017-08-15 08:14:15 +00:00
|
|
|
// The bank of corda CorDapp depends upon Cash CorDapp features
|
|
|
|
cordapp project(':finance')
|
|
|
|
|
2016-11-18 17:51:12 +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')
|
|
|
|
cordaCompile project(':client:jfx')
|
|
|
|
cordaCompile project(':client:rpc')
|
|
|
|
cordaCompile project(':webserver')
|
2017-09-05 08:50:51 +00:00
|
|
|
cordaCompile project(':node-driver')
|
2016-11-18 17:51:12 +00:00
|
|
|
|
|
|
|
// Javax is required for webapis
|
|
|
|
compile "org.glassfish.jersey.core:jersey-server:${jersey_version}"
|
2017-07-31 16:18:29 +00:00
|
|
|
|
|
|
|
// Cordapp dependencies
|
|
|
|
// Specify your cordapp's dependencies below, including dependent cordapps
|
|
|
|
|
|
|
|
// Test dependencies
|
|
|
|
testCompile "junit:junit:$junit_version"
|
2016-11-18 17:51:12 +00:00
|
|
|
}
|
|
|
|
|
2017-04-04 14:45:41 +00:00
|
|
|
task deployNodes(type: net.corda.plugins.Cordform, dependsOn: ['jar']) {
|
2016-11-18 17:51:12 +00:00
|
|
|
directory "./build/nodes"
|
|
|
|
// This name "Notary" is hard-coded into BankOfCordaClientApi so if you change it here, change it there too.
|
|
|
|
node {
|
2017-09-12 00:03:10 +00:00
|
|
|
name "O=Notary Service,L=Zurich,C=CH"
|
2017-10-05 11:27:45 +00:00
|
|
|
notary = [validating : true]
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10002
|
|
|
|
rpcPort 10003
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2016-11-18 17:51:12 +00:00
|
|
|
}
|
|
|
|
node {
|
2017-09-19 16:33:00 +00:00
|
|
|
name "O=BankOfCorda,L=London,C=GB"
|
2017-10-09 17:57:09 +00:00
|
|
|
extraConfig = [issuableCurrencies : ["USD"]]
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10005
|
|
|
|
rpcPort 10006
|
|
|
|
webPort 10007
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2016-12-06 16:16:47 +00:00
|
|
|
rpcUsers = [
|
2017-04-11 10:48:15 +00:00
|
|
|
['username' : "bankUser",
|
|
|
|
'password' : "test",
|
2017-08-21 15:40:28 +00:00
|
|
|
'permissions': ["StartFlow.net.corda.finance.flows.CashPaymentFlow",
|
2017-09-21 12:27:05 +00:00
|
|
|
"StartFlow.net.corda.finance.flows.CashConfigDataFlow",
|
2017-08-21 15:40:28 +00:00
|
|
|
"StartFlow.net.corda.finance.flows.CashExitFlow",
|
2017-09-21 13:50:20 +00:00
|
|
|
"StartFlow.net.corda.finance.flows.CashIssueAndPaymentFlow",
|
|
|
|
"StartFlow.net.corda.finance.flows.CashConfigDataFlow"]]
|
2016-12-06 16:16:47 +00:00
|
|
|
]
|
2016-11-18 17:51:12 +00:00
|
|
|
}
|
|
|
|
node {
|
2017-09-19 16:33:00 +00:00
|
|
|
name "O=BigCorporation,L=New York,C=US"
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10008
|
|
|
|
rpcPort 10009
|
|
|
|
webPort 10010
|
2017-08-15 08:14:15 +00:00
|
|
|
cordapps = ["net.corda:finance:$corda_release_version"]
|
2017-01-11 11:01:16 +00:00
|
|
|
rpcUsers = [
|
2017-04-11 10:48:15 +00:00
|
|
|
['username' : "bigCorpUser",
|
|
|
|
'password' : "test",
|
2017-09-21 13:50:20 +00:00
|
|
|
'permissions': ["StartFlow.net.corda.finance.flows.CashPaymentFlow",
|
|
|
|
"StartFlow.net.corda.finance.flows.CashConfigDataFlow"]]
|
2017-01-11 11:01:16 +00:00
|
|
|
]
|
2016-11-18 17:51:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task integrationTest(type: Test, dependsOn: []) {
|
2017-08-24 15:46:54 +00:00
|
|
|
testClassesDirs = sourceSets.integrationTest.output.classesDirs
|
2016-11-18 17:51:12 +00:00
|
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
|
|
|
}
|
|
|
|
|
|
|
|
idea {
|
|
|
|
module {
|
|
|
|
downloadJavadoc = true // defaults to false
|
|
|
|
downloadSources = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
|
|
|
publications {
|
|
|
|
jarAndSources(MavenPublication) {
|
|
|
|
from components.java
|
|
|
|
artifactId 'bankofcorda'
|
|
|
|
|
|
|
|
artifact sourceJar
|
|
|
|
artifact javadocJar
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task runIssuer(type: JavaExec) {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'net.corda.bank.BankOfCordaDriverKt'
|
|
|
|
args '--role'
|
|
|
|
args 'ISSUER'
|
|
|
|
}
|
|
|
|
|
|
|
|
task runRPCCashIssue(type: JavaExec) {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'net.corda.bank.BankOfCordaDriverKt'
|
|
|
|
args '--role'
|
|
|
|
args 'ISSUE_CASH_RPC'
|
|
|
|
args '--quantity'
|
|
|
|
args 20000
|
|
|
|
args '--currency'
|
|
|
|
args 'USD'
|
|
|
|
}
|
|
|
|
|
|
|
|
task runWebCashIssue(type: JavaExec) {
|
|
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
|
|
main = 'net.corda.bank.BankOfCordaDriverKt'
|
|
|
|
args '--role'
|
|
|
|
args 'ISSUE_CASH_WEB'
|
|
|
|
args '--quantity'
|
|
|
|
args 30000
|
|
|
|
args '--currency'
|
|
|
|
args 'GBP'
|
2017-01-03 14:15:23 +00:00
|
|
|
}
|
2017-10-06 14:37:33 +00:00
|
|
|
|
|
|
|
jar {
|
|
|
|
manifest {
|
|
|
|
attributes(
|
|
|
|
'Automatic-Module-Name': 'net.corda.samples.demos.bankofcorda'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|