mirror of
https://github.com/corda/corda.git
synced 2024-12-26 08:01:09 +00:00
23 lines
466 B
Groovy
23 lines
466 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
apply plugin: 'net.corda.plugins.cordapp'
|
||
|
|
||
|
description 'Corda Network Verifier - Contracts'
|
||
|
|
||
|
dependencies {
|
||
|
cordaCompile project(':core')
|
||
|
}
|
||
|
|
||
|
cordapp {
|
||
|
targetPlatformVersion corda_platform_version.toInteger()
|
||
|
minimumPlatformVersion 1
|
||
|
contract {
|
||
|
name "Corda Network Verifier"
|
||
|
versionId 1
|
||
|
vendor "R3"
|
||
|
licence "Open Source (Apache 2)"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
baseName 'corda-network-verifier-contracts'
|
||
|
}
|