mirror of
https://github.com/corda/corda.git
synced 2024-12-19 13:08:04 +00:00
ba675e73b9
Upgrade Corda to use Gradle 5.4.1
29 lines
666 B
Groovy
29 lines
666 B
Groovy
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
|
|
sealing {
|
|
enabled false // This needs to be disabled for AttachmentsClassLoaderSerializationTests to work
|
|
}
|
|
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)"
|
|
}
|
|
}
|