- 취약점 조치

This commit is contained in:
daekuk
2026-02-25 09:37:55 +09:00
parent 9bab1c8d1b
commit 9a0968d445
3 changed files with 11 additions and 3 deletions
+8
View File
@@ -64,6 +64,8 @@ war {
// rootSpec.exclude '**/persistence.xml'
exclude '**/context.xml'
exclude '**/context-*.xml'
exclude '**/context_*.xml'
archiveFileName = "eapim-admin.war"
duplicatesStrategy = DuplicatesStrategy.WARN
}
@@ -261,4 +263,10 @@ eclipse {
buildCommand 'org.eclipse.buildship.core.gradleprojectbuilder'
}
}
}
tasks.withType(JavaCompile) {
options.fork = true // 컴파일을 별도 프로세스로 분리
options.forkOptions.memoryMaximumSize = '4g' // 컴파일러에 2GB 할당 (필요시 4g로 증량)
options.encoding = 'UTF-8'
}