Files
Umbrella/web/build.gradle.kts
2025-06-27 21:43:54 +02:00

12 lines
232 B
Kotlin

description = "Umbrella : Web"
dependencies{
implementation("de.srsoftware:tools.http:6.0.0")
}
tasks.processResources {
System.out.println("Copying from dist…")
from("../frontend/dist") {
into("web")
}
}