weblogic 대응

This commit is contained in:
Rinjae
2025-09-11 10:13:47 +09:00
parent a3dae6e8c7
commit eaefdc2fa1
7 changed files with 193 additions and 7 deletions
+10
View File
@@ -47,6 +47,16 @@ 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" }
}
}
rootSpec.exclude '**/persistence.xml'
exclude '**/context.xml'
archiveFileName = "eapim-admin.war"