Merge pull request #237 from aguibert/task-ordering

Add missing task dependencies
This commit is contained in:
Andrew Guibert 2019-10-07 15:44:57 -05:00 committed by GitHub
commit 7f1445df02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ task dockerStop {
composeUp {
subprojects.each {
dependsOn("${it.name}:war")
dependsOn("${it.name}:assemble")
}
}

View File

@ -23,7 +23,7 @@ dependencies {
}
task addPostgresqlToServer(type: Copy) {
shouldRunAfter libertyCreate
mustRunAfter libertyCreate
from configurations.postgresql
into "${rootProject.buildDir}/wlp/usr/servers/${liberty.server.name}/postgresql"
}