2
0
Fork 0
mirror of https://github.com/ethauvin/rife2-hello.git synced 2025-04-25 23:37:12 -07:00

Added a RunTask which includes the templates directory in the runtime classspath

This commit is contained in:
Erik C. Thauvin 2023-02-26 17:58:21 -08:00
parent 834c75492b
commit d954e75cf5
6 changed files with 102 additions and 21 deletions

View file

@ -2,9 +2,10 @@ plugins {
war
}
version = 1.0
base {
archivesName.set("hello")
version = 1.0
}
repositories {
@ -20,4 +21,4 @@ tasks.war {
webAppDirectory.set(file("../app/src/main/webapp"))
webXml = file("src/web.xml")
rootSpec.exclude("**/jetty*.jar", "**/slf4j*.jar", "**/rife2*-agent.jar")
}
}