mirror of
https://github.com/corda/corda.git
synced 2024-12-20 13:33:12 +00:00
47068e6b7a
* Upgrade gradle plugin; add target version attribute to finance and sample cordapps. * Remove '-SNAPSHOT' from gradlePluginsVersion. * Fix naming. * Update docs. * Respond to feedback. * Fix irs demo * Fix more samples * Fix more samples * Fix deployNodes * Fix deployNodes * more fixes * fix simm valuation * more fixes * more fixes * more fixes * more fixes * Publication should have *nothing* to do with cordformation and deployNodes. Remove it! And if this exposes a bug then "so be it". * Disable CorDapp signing for Cordapp Configuration and Network Verifier. * Disable CorDapp signing for SIMM Valuation Demo. * Remove remaining publishing nonsense from samples. * Workarounds fpr cordapp-configuration, network-verifier and simm-valuation-demo: JarSigner rejects jars with duplicates inside, so remove them. * Upgrade to Gradle plugin 4.0.32 and reenable CorDapp signing for samples.
37 lines
1.3 KiB
Groovy
37 lines
1.3 KiB
Groovy
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
|
|
cordapp {
|
|
info {
|
|
vendor = 'R3'
|
|
targetPlatformVersion = corda_platform_version.toInteger()
|
|
}
|
|
signing {
|
|
enabled false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
cordaCompile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
|
|
// The SIMM demo CorDapp depends upon Cash CorDapp features
|
|
cordapp project(':finance')
|
|
cordapp project(path: ':samples:simm-valuation-demo:contracts-states', configuration: 'shrinkArtifacts')
|
|
|
|
// Corda integration dependencies
|
|
cordaCompile project(':core')
|
|
|
|
// Cordapp dependencies
|
|
// Specify your cordapp's dependencies below, including dependent cordapps
|
|
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"
|
|
}
|