mirror of
https://github.com/corda/corda.git
synced 2024-12-28 00:38:55 +00:00
25e76017e1
* CORDA-1346 split the simm valuation demo to reduce the size of the contract jar (#3078) * CORDA-1346 fix backport
23 lines
655 B
Groovy
23 lines
655 B
Groovy
buildscript {
|
|
ext.strata_version = '1.1.2'
|
|
}
|
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
apply plugin: 'net.corda.plugins.cordformation'
|
|
|
|
dependencies {
|
|
|
|
// The SIMM demo CorDapp depends upon Cash CorDapp features
|
|
cordapp project(':finance')
|
|
|
|
// Corda integration dependencies
|
|
cordaCompile project(path: ":node:capsule", configuration: 'runtimeArtifacts')
|
|
cordaCompile project(':core')
|
|
|
|
|
|
// Cordapp dependencies
|
|
// Specify your cordapp's dependencies below, including dependent cordapps
|
|
compile "com.opengamma.strata:strata-product:${strata_version}"
|
|
compile "com.opengamma.strata:strata-market:${strata_version}"
|
|
|
|
} |