corda/testing/cordapps/sleeping/build.gradle

14 lines
312 B
Groovy
Raw Normal View History

apply plugin: 'kotlin'
dependencies {
compile project(":core")
}
jar {
baseName "testing-sleeping-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)
}
}