mirror of
https://github.com/corda/corda.git
synced 2025-01-19 11:16:54 +00:00
27 lines
576 B
Groovy
27 lines
576 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
apply plugin: CanonicalizerPlugin
|
||
|
apply plugin: 'net.corda.plugins.cordapp'
|
||
|
|
||
|
description 'Isolated CorDapp for testing'
|
||
|
|
||
|
dependencies {
|
||
|
cordaCompile project(':core')
|
||
|
}
|
||
|
|
||
|
cordapp {
|
||
|
targetPlatformVersion corda_platform_version.toInteger()
|
||
|
minimumPlatformVersion 1
|
||
|
contract {
|
||
|
name "Isolated Test CorDapp"
|
||
|
versionId 1
|
||
|
vendor "R3"
|
||
|
licence "Open Source (Apache 2)"
|
||
|
}
|
||
|
workflow {
|
||
|
name "Isolated Test CorDapp"
|
||
|
versionId 1
|
||
|
vendor "R3"
|
||
|
licence "Open Source (Apache 2)"
|
||
|
}
|
||
|
}
|