mirror of
https://github.com/corda/corda.git
synced 2024-12-30 17:57:02 +00:00
17 lines
452 B
Groovy
17 lines
452 B
Groovy
|
apply plugin: 'kotlin'
|
||
|
//apply plugin: 'net.corda.plugins.cordapp'
|
||
|
//apply plugin: 'net.corda.plugins.quasar-utils'
|
||
|
|
||
|
dependencies {
|
||
|
compile project(":core")
|
||
|
compile project(':finance:workflows')
|
||
|
}
|
||
|
|
||
|
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)
|
||
|
}
|
||
|
}
|