mirror of
https://github.com/ethauvin/rife2-hello.git
synced 2025-04-24 15:07:11 -07:00
23 lines
No EOL
442 B
Kotlin
23 lines
No EOL
442 B
Kotlin
plugins {
|
|
war
|
|
}
|
|
|
|
base {
|
|
archivesName.set("hello")
|
|
version = 1.0
|
|
}
|
|
|
|
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")
|
|
rootSpec.exclude("**/jetty*.jar", "**/slf4j*.jar")
|
|
} |