weblogic 대응

This commit is contained in:
Rinjae
2025-09-11 10:17:30 +09:00
parent eaefdc2fa1
commit df2939636b
+4 -5
View File
@@ -48,12 +48,11 @@ compileJava {
war {
def profile = project.findProperty("profile") ?: "weblogic"
if (profile == "weblogic") {
// weblogic-web.xml 파일을 web.xml 이름으로 넣기
from("WEB-INF/weblogic-web.xml") {
into "WEB-INF"
rename { "web.xml" }
}
webXml = file("WEB-INF/weblogic-web.xml")
} else {
webXml = file("WEB-INF/web.xml")
}