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 { war {
def profile = project.findProperty("profile") ?: "weblogic" def profile = project.findProperty("profile") ?: "weblogic"
if (profile == "weblogic") { if (profile == "weblogic") {
// weblogic-web.xml 파일을 web.xml 이름으로 넣기 webXml = file("WEB-INF/weblogic-web.xml")
from("WEB-INF/weblogic-web.xml") { } else {
into "WEB-INF" webXml = file("WEB-INF/web.xml")
rename { "web.xml" }
}
} }