mirror of
https://github.com/corda/corda.git
synced 2024-12-20 21:43:14 +00:00
317b59ab9d
Test was flaky because the flow can finish below it can be killed, therefore failing the test. Sleep for 1 minute instead to give plenty of time for the test.
14 lines
312 B
Groovy
14 lines
312 B
Groovy
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)
|
|
}
|
|
} |