2
0
Fork 0
mirror of https://github.com/ethauvin/rife2.git synced 2025-04-30 18:48:13 -07:00
rife2/war/build.gradle.kts

26 lines
No EOL
363 B
Kotlin

plugins {
war
}
base {
archivesName.set("hello")
version = 1.0
}
repositories {
mavenCentral()
}
dependencies {
implementation(project(":app"))
}
tasks.war {
webAppDirectory.set(file("../app/src/main/webapp"))
webXml = file("src/web.xml")
rootSpec.exclude("**/jetty*.jar", "**/slf4j*.jar")
}
tasks.test {
enabled = false
}