반응형
Error
grpc interface 라이브러리 생성을 위해 Intellij에서 Gradle Project build 시 아래와 같은 에러가 발생함.
error: unmappable character (0xEC) for encoding x-windows-949
*?��?��?�� message?�� 1�? ?��?��?��.
반응형
Solution
인코딩 문제로 Intellij 설정에서 프로젝트 인코딩을 수정하면 됨
적용해도 되지 않을 경우 Gradle clean 실행 후 다시 build하면 정상 빌드 됨.
그래도 안될경우 build.gradle에 아래 코드 추가
compileJava.options.encoding = 'UTF-8'
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
Thank you!
반응형
'IDE > intellij' 카테고리의 다른 글
[Intellij] Intellij 실행 시 메인 화면 나오도록 설정하기 (0) | 2024.05.10 |
---|---|
[Intellij] Intellij에서 gradle project dependency reload하기 (0) | 2024.05.08 |
[Intellij] Intellij 소스트리에서 추가한 jar preview 설정하는 방법 (0) | 2024.05.08 |
[Intellij] SpringBoot 프로젝트 External Libraries do not update when changing Spring Boot Gradle plugin version 해결 (0) | 2024.05.04 |
[Intellij] Intellij 열린 파일 항상 선택되게 설정하기 (0) | 2024.05.03 |