Files
Umbrella/web/build.gradle.kts
2026-01-12 22:40:38 +01:00

14 lines
269 B
Kotlin

description = "Umbrella : Web"
dependencies{
implementation(project(":core"))
}
tasks.processResources {
System.out.println("Copying from dist…")
from("../frontend/dist") {
into("web")
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}