mirror of
https://github.com/corda/corda.git
synced 2024-12-22 22:32:26 +00:00
32 lines
815 B
Groovy
32 lines
815 B
Groovy
apply plugin: 'kotlin'
|
|
apply plugin: 'net.corda.plugins.quasar-utils'
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
|
|
dependencies {
|
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
cordaCompile project(':core')
|
|
|
|
// The trader demo CorDapp depends upon Cash CorDapp features
|
|
cordapp project(':finance:contracts')
|
|
cordapp project(':finance:workflows')
|
|
|
|
testCompile project(':node-driver')
|
|
testCompile "junit:junit:$junit_version"
|
|
testCompile "org.assertj:assertj-core:$assertj_version"
|
|
}
|
|
|
|
jar {
|
|
baseName 'corda-trader-demo-workflows'
|
|
}
|
|
|
|
cordapp {
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
minimumPlatformVersion 1
|
|
workflow {
|
|
name "Trader Demo"
|
|
versionId 1
|
|
vendor "R3"
|
|
licence "Open Source (Apache 2)"
|
|
}
|
|
}
|