-
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!개발 2013. 3. 12. 14:51반응형
메이븐에서 사용할 인코딩을 별도로 지정하지 않으면 OS 인코딩을 따라가는 듯.
그래서 아래와 같은 메시지가 나온다.
[WARNING] Using platform encoding (MacRoman actually) to copy filtered resources, i.e. build is platform dependent!
pom.xml에 아래와 같이 내용을 추가해 준다.
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
그러면 간단히 해결됨.
반응형'개발' 카테고리의 다른 글
CXF 유저가이드의 샘플 Checkout 받기 (0) 2013.03.13 xstream을 이용한 Marshal, Unmarshal (0) 2013.03.12 Using the Timer Scheduler (0) 2013.03.08 Using the Quartz Scheduler (0) 2013.03.08 안드로이드를 위한 기본 정리 (1) (0) 2013.02.13