개발 환경 설정 파일 제거 및 빌드 예외 처리 추가

This commit is contained in:
Rinjae
2026-02-25 19:22:15 +09:00
parent 7c30fa9fd9
commit 5d36288c53
8 changed files with 16 additions and 189 deletions
+9
View File
@@ -137,6 +137,15 @@ compileJava {
options.compilerArgs += ["-parameters"]
options.encoding = 'UTF-8'
}
processResources {
exclude { details ->
details.file.name.startsWith('application-') &&
details.file.name.endsWith('.yml') &&
!(details.file.name in ['application-stage.yml', 'application-prod.yml'])
}
}
test {
useJUnitPlatform()
enabled = true