멀티태넌스 동작 확인
This commit is contained in:
+9
-10
@@ -47,20 +47,19 @@ compileJava {
|
||||
}
|
||||
|
||||
war {
|
||||
def profile = project.findProperty("profile") ?: "weblogic"
|
||||
|
||||
if (profile == "weblogic") {
|
||||
webXml = file("WebContent/WEB-INF/weblogic-web.xml")
|
||||
} else {
|
||||
webXml = file("WebContent/WEB-INF/web.xml")
|
||||
}
|
||||
|
||||
|
||||
def profile = project.findProperty("profile") ?: "tomcat"
|
||||
|
||||
if (profile == "weblogic") {
|
||||
webXml = file("WebContent/WEB-INF/weblogic-web.xml")
|
||||
}
|
||||
|
||||
|
||||
// rootSpec.exclude '**/persistence.xml'
|
||||
exclude '**/context.xml'
|
||||
archiveFileName = "eapim-admin.war"
|
||||
archiveFileName = "eapim-admin.war"
|
||||
}
|
||||
|
||||
|
||||
tasks.withType(JavaCompile) {
|
||||
options.encoding = 'UTF-8'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user