Files
Umbrella/web/build.gradle.kts
Stephan Richter bac04ac047 implemented function to return estimated times of company.
Therefore task and project module had to be created and partially implemented
2025-07-13 23:45:18 +02:00

12 lines
216 B
Kotlin

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