mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
17 lines
454 B
Groovy
17 lines
454 B
Groovy
apply plugin: 'kotlin'
|
|
|
|
description 'Utilities needed for smoke tests in Corda'
|
|
|
|
dependencies {
|
|
// Smoke tests do NOT have any Node code on the classpath!
|
|
compile project(':test-common')
|
|
compile project(':client:rpc')
|
|
}
|
|
|
|
tasks.named('jar', Jar) {
|
|
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)
|
|
}
|
|
} |