14 lines
269 B
Kotlin
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
|
|
}
|