corda/samples/notary-demo/workflows/build.gradle
Chris Rankin dc83afb4de CORDA-2672: Tidy up CorDapp deployments in samples. (#4815)
* 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.
2019-03-11 16:48:35 +00:00

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'
}