gradle weblogic 빌드 추가

This commit is contained in:
Rinjae
2025-10-13 17:18:12 +09:00
parent ea18f4602e
commit d5ebf68016
+9
View File
@@ -46,6 +46,15 @@ compileJava {
}
war {
// 2025.10.13 - weblogic 대응 (weblogic-web.xml -> web.xml 강제 사용)
def profile = project.findProperty("profile") ?: "tomcat"
if (profile == "weblogic") {
webXml = file("WebContent/WEB-INF/weblogic-web.xml")
}
archiveFileName = "eapim-admin.war"
duplicatesStrategy = DuplicatesStrategy.WARN
exclude '**/persistence.xml'
exclude '**/context.xml'
}