-
[WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!언어 및 프레임워크/Java 2013. 3. 12. 14:51728x90
메이븐에서 사용할 인코딩을 별도로 지정하지 않으면 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>
그러면 간단히 해결됨.
728x90'언어 및 프레임워크 > Java' 카테고리의 다른 글
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 (1) 2013.03.08 Java Architecture for XML Binding (JAXB)를 이용한 Marshal, Unmarshal (0) 2013.02.06