2023-04-27 15:58:17 +00:00
|
|
|
apply plugin: 'kotlin'
|
2023-08-21 08:11:00 +00:00
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
2023-04-27 15:58:17 +00:00
|
|
|
//apply plugin: 'net.corda.plugins.quasar-utils'
|
|
|
|
|
|
|
|
dependencies {
|
2023-08-21 08:11:00 +00:00
|
|
|
cordaCompile project(":core")
|
|
|
|
cordapp project(':finance:workflows')
|
2023-04-27 15:58:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName "testing-cashobservers-cordapp"
|
|
|
|
manifest {
|
|
|
|
// This JAR is part of Corda's testing framework.
|
|
|
|
// Driver will not include it as part of an out-of-process node.
|
|
|
|
attributes('Corda-Testing': true)
|
|
|
|
}
|
2023-08-21 08:11:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cordapp {
|
|
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
|
|
minimumPlatformVersion 1
|
|
|
|
workflow {
|
|
|
|
name "Corda Cash Observers Test CorDapp"
|
|
|
|
versionId 1
|
|
|
|
vendor "R3"
|
|
|
|
licence "Open Source (Apache 2)"
|
|
|
|
}
|
|
|
|
signing {
|
|
|
|
enabled false
|
|
|
|
}
|
2023-04-27 15:58:17 +00:00
|
|
|
}
|