Therefore task and project module had to be created and partially implemented
12 lines
216 B
Kotlin
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")
|
|
}
|
|
} |