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 { dependencies {
compileOnly 'org.projectlombok:lombok:1.18.32' compileOnly 'org.projectlombok:lombok:1.18.32'
annotationProcessor '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'
} }

View File

@@ -1,4 +1,4 @@
package io.shinhanlife.axhub.biz.mcp.adapter.sender; package io.shinhanlife.axhub.biz.mcp.adapter.sender;
import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.ObjectMapper;
import io.shinhanlife.axhub.common.integration.mci.dto.MciRequestWrapper; import io.shinhanlife.axhub.common.integration.mci.dto.MciRequestWrapper;