CORDA-1112 - Explicit dependency on JS dep dir seems to eliminate race condition bug (#2675)

* Explicitly add directory with downloaded JS dependencies

* Indentation
This commit is contained in:
Maksymilian Pawlak 2018-03-01 14:54:59 +00:00 committed by Katelyn Baker
parent d77290831c
commit 57067065f4

View File

@ -78,6 +78,10 @@ dependencies {
jar {
from sourceSets.test.output
dependsOn clientInstall
from("src/main/resources/static/js/bower_components") {
into "static/js/bower_components"
}
}
def docker_dir = file("$project.buildDir/docker")