2018-12-31 15:02:11 +00:00
|
|
|
apply plugin: 'kotlin'
|
|
|
|
apply plugin: 'net.corda.plugins.cordapp'
|
|
|
|
|
|
|
|
description 'Isolated CorDapp for testing'
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
cordaCompile project(':core')
|
|
|
|
}
|
|
|
|
|
|
|
|
cordapp {
|
|
|
|
targetPlatformVersion corda_platform_version.toInteger()
|
|
|
|
minimumPlatformVersion 1
|
2019-01-14 14:32:14 +00:00
|
|
|
sealing {
|
|
|
|
enabled false // This needs to be disabled for AttachmentsClassLoaderSerializationTests to work
|
|
|
|
}
|
2018-12-31 15:02:11 +00:00
|
|
|
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)"
|
|
|
|
}
|
|
|
|
}
|