2018-07-17 11:31:44 +00:00
|
|
|
allprojects {
|
|
|
|
ext {
|
|
|
|
strata_version = '1.1.2'
|
|
|
|
}
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'idea'
|
|
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
2017-10-09 19:08:08 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
2016-11-17 11:03:40 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordformation'
|
|
|
|
|
|
|
|
sourceSets {
|
2016-12-15 14:34:04 +00:00
|
|
|
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
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2018-10-15 20:11:52 +00:00
|
|
|
cordaCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
2016-11-17 11:03:40 +00:00
|
|
|
|
2017-08-15 08:14:15 +00:00
|
|
|
// The SIMM demo CorDapp depends upon Cash CorDapp features
|
2018-12-19 18:02:51 +00:00
|
|
|
cordapp project(':finance:contracts')
|
|
|
|
cordapp project(':finance:workflows')
|
2019-05-20 15:16:49 +00:00
|
|
|
cordapp project(path: ':samples:simm-valuation-demo:contracts-states', configuration: 'shrinkArtifacts')
|
2018-05-08 15:19:35 +00:00
|
|
|
cordapp project(':samples:simm-valuation-demo:flows')
|
2017-08-15 08:14:15 +00:00
|
|
|
|
2019-09-18 09:26:26 +00:00
|
|
|
// 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.
|
|
|
|
cordaRuntime "org.slf4j:slf4j-simple:$slf4j_version"
|
|
|
|
|
2016-11-17 11:03:40 +00:00
|
|
|
// Corda integration dependencies
|
2018-08-11 11:57:04 +00:00
|
|
|
cordaRuntime project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
|
|
|
cordaRuntime project(path: ":webserver:webcapsule", configuration: 'runtimeArtifacts')
|
2017-07-27 16:53:51 +00:00
|
|
|
cordaCompile project(':core')
|
2019-09-18 09:26:26 +00:00
|
|
|
cordaCompile (project(':webserver')) {
|
|
|
|
exclude group: "org.apache.logging.log4j"
|
|
|
|
}
|
2017-07-31 16:18:29 +00:00
|
|
|
|
|
|
|
// Javax is required for webapis
|
2018-07-17 11:31:44 +00:00
|
|
|
compile "org.glassfish.jersey.core:jersey-server:$jersey_version"
|
2016-11-17 11:03:40 +00:00
|
|
|
|
|
|
|
// Cordapp dependencies
|
|
|
|
// Specify your cordapp's dependencies below, including dependent cordapps
|
2018-07-17 11:31:44 +00:00
|
|
|
compile "com.opengamma.strata:strata-basics:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-product:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-data:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-calc:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-pricer:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-report:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-market:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-collect:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-loader:$strata_version"
|
|
|
|
compile "com.opengamma.strata:strata-math:$strata_version"
|
2017-06-14 14:59:17 +00:00
|
|
|
|
2017-07-31 16:18:29 +00:00
|
|
|
// Test dependencies
|
2017-09-05 08:50:51 +00:00
|
|
|
testCompile project(':node-driver')
|
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
|
|
|
|
2018-07-17 11:31:44 +00:00
|
|
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
2019-03-11 16:48:35 +00:00
|
|
|
jar {
|
|
|
|
// A CorDapp does not configure the Node's logging!
|
|
|
|
exclude "**/log4j2*.xml"
|
|
|
|
}
|
|
|
|
|
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]) {
|
2018-08-11 11:57:04 +00:00
|
|
|
directory file("$buildDir/nodes")
|
|
|
|
nodeDefaults {
|
2018-12-19 18:02:51 +00:00
|
|
|
cordapp project(':finance:contracts')
|
|
|
|
cordapp project(':finance:workflows')
|
2018-08-11 11:57:04 +00:00
|
|
|
cordapp project(':samples:simm-valuation-demo:contracts-states')
|
|
|
|
cordapp project(':samples:simm-valuation-demo:flows')
|
|
|
|
rpcUsers = [['username': "default", 'password': "default", 'permissions': [ 'ALL' ]]]
|
|
|
|
}
|
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"
|
2017-10-05 11:27:45 +00:00
|
|
|
notary = [validating : true]
|
2017-03-17 10:32:14 +00:00
|
|
|
p2pPort 10002
|
2018-03-16 16:41:34 +00:00
|
|
|
rpcSettings {
|
|
|
|
address "localhost:10014"
|
|
|
|
adminAddress "localhost:10015"
|
|
|
|
}
|
2018-08-11 11:57:04 +00:00
|
|
|
rpcUsers = []
|
2018-01-02 09:56:26 +00:00
|
|
|
extraConfig = [
|
2018-03-01 14:57:36 +00:00
|
|
|
custom: [
|
|
|
|
jvmArgs: ["-Xmx1g"]
|
2018-08-01 10:50:42 +00:00
|
|
|
],
|
|
|
|
'h2Settings.address' : 'localhost:10038'
|
2018-01-02 09:56:26 +00:00
|
|
|
]
|
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 10004
|
2017-03-07 17:45:45 +00:00
|
|
|
webPort 10005
|
2018-01-25 14:32:58 +00:00
|
|
|
rpcSettings {
|
|
|
|
address("localhost:10016")
|
|
|
|
adminAddress("localhost:10017")
|
|
|
|
}
|
2018-01-02 09:56:26 +00:00
|
|
|
extraConfig = [
|
2018-03-01 14:57:36 +00:00
|
|
|
custom: [
|
|
|
|
jvmArgs: ["-Xmx1g"]
|
2018-08-01 10:50:42 +00:00
|
|
|
],
|
|
|
|
'h2Settings.address' : 'localhost:10039'
|
2018-01-02 09:56:26 +00:00
|
|
|
]
|
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-09-29 11:27:48 +00:00
|
|
|
p2pPort 10007
|
|
|
|
webPort 10008
|
2018-01-25 14:32:58 +00:00
|
|
|
rpcSettings {
|
|
|
|
address("localhost:10026")
|
|
|
|
adminAddress("localhost:10027")
|
|
|
|
}
|
2018-01-02 09:56:26 +00:00
|
|
|
extraConfig = [
|
2018-03-01 14:57:36 +00:00
|
|
|
custom: [
|
|
|
|
jvmArgs: ["-Xmx1g"]
|
2018-08-01 10:50:42 +00:00
|
|
|
],
|
|
|
|
'h2Settings.address' : 'localhost:10040'
|
2018-01-02 09:56:26 +00:00
|
|
|
]
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
2016-11-20 14:16:50 +00:00
|
|
|
node {
|
2017-09-11 13:43:55 +00:00
|
|
|
name "O=Bank C,L=Tokyo,C=JP"
|
2017-09-29 11:27:48 +00:00
|
|
|
p2pPort 10010
|
|
|
|
webPort 10011
|
2018-01-25 14:32:58 +00:00
|
|
|
rpcSettings {
|
|
|
|
address("localhost:10036")
|
|
|
|
adminAddress("localhost:10037")
|
|
|
|
}
|
2018-01-02 09:56:26 +00:00
|
|
|
extraConfig = [
|
2018-03-01 14:57:36 +00:00
|
|
|
custom: [
|
|
|
|
jvmArgs: ["-Xmx1g"]
|
2018-08-01 10:50:42 +00:00
|
|
|
],
|
|
|
|
'h2Settings.address' : 'localhost:10041'
|
2018-01-02 09:56:26 +00:00
|
|
|
]
|
2016-11-20 14:16:50 +00:00
|
|
|
}
|
2016-11-17 11:03:40 +00:00
|
|
|
}
|
|
|
|
|
2016-12-15 14:34:04 +00:00
|
|
|
task integrationTest(type: Test, dependsOn: []) {
|
2017-08-24 15:46:54 +00:00
|
|
|
testClassesDirs = sourceSets.integrationTest.output.classesDirs
|
2016-12-15 14:34:04 +00:00
|
|
|
classpath = sourceSets.integrationTest.runtimeClasspath
|
|
|
|
}
|
2018-10-15 20:11:52 +00:00
|
|
|
|
|
|
|
cordapp {
|
2018-12-14 09:39:23 +00:00
|
|
|
targetPlatformVersion = corda_platform_version.toInteger()
|
|
|
|
contract {
|
|
|
|
name "net/corda/vega/contracts"
|
|
|
|
versionId 1
|
|
|
|
vendor "R3"
|
|
|
|
licence "Open Source (Apache 2)"
|
|
|
|
}
|
|
|
|
workflow {
|
|
|
|
name "net/corda/vega/flows"
|
|
|
|
versionId 1
|
|
|
|
vendor "R3"
|
|
|
|
licence "Open Source (Apache 2)"
|
2018-10-15 20:11:52 +00:00
|
|
|
}
|
|
|
|
}
|