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) } }