2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-26 07:47:13 -07:00
rife2-hello/war/build.gradle.kts
2023-03-06 19:48:12 -05:00

23 lines
No EOL
384 B
Kotlin

plugins {
war
}
version = 1.0
base {
archivesName.set("hello")
}
repositories {
mavenCentral()
maven { url = uri("https://s01.oss.sonatype.org/content/repositories/snapshots") } // only needed for SNAPSHOT
}
dependencies {
implementation(project(":app"))
}
tasks.war {
webAppDirectory.set(file("../app/src/main/webapp"))
webXml = file("src/web.xml")
}