avoid creating the jar befre the front-end is copied

This commit is contained in:
Aria Moradi 2021-04-13 10:53:23 +04:30
parent 2f116b40b2
commit d1fa857ffb

View File

@ -211,5 +211,9 @@ tasks.named("run") {
dependsOn("formatKotlin", "lintKotlin") dependsOn("formatKotlin", "lintKotlin")
} }
tasks.named("processResources") {
mustRunAfter(":webUI:copyBuild")
}