mirror of
https://github.com/corda/corda.git
synced 2024-12-20 13:33:12 +00:00
dc83afb4de
* CORDA-2672: Tidy up CorDapp deployments in samples. * CORDA-2672: Refactor Attachment Demo. * Remove Bank of Corda from Trader Demo. * Configure SLF4J simple loggers, fix comments and documentation.
31 lines
735 B
Groovy
31 lines
735 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
|
|
description 'Corda Notary Demo - Workflows'
|
|
|
|
dependencies {
|
|
cordaCompile project(':core')
|
|
cordaCompile project(':client:rpc')
|
|
|
|
// We need to compile against the Node, but also DO NOT
|
|
// want the Node bundled inside the CorDapp or added to
|
|
// Gradle's runtime classpath.
|
|
compileOnly project(':node')
|
|
|
|
cordapp project(':samples:notary-demo:contracts')
|
|
}
|
|
|
|
cordapp {
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
minimumPlatformVersion 1
|
|
workflow {
|
|
name "Corda Notary Demo"
|
|
versionId 1
|
|
vendor "R3"
|
|
licence "Open Source (Apache 2)"
|
|
}
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-notary-demo-workflows'
|
|
} |