fix: Java 파일 내 보이지 않는 BOM(Byte Order Mark) 문자 제거하여 컴파일 오류 해결

This commit is contained in:
jade
2026-07-16 14:15:57 +09:00
parent c9b3baacff
commit 911c7f43a5
2 changed files with 5 additions and 1 deletions

View File

@@ -9,4 +9,8 @@ dependencies {
dependencies {
compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor 'org.projectlombok:lombok:1.18.32'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testCompileOnly 'org.projectlombok:lombok:1.18.32'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.32'
}