반응형
Maven 으로 컴파일 도중 다음의 오류 발생
[WARN] Using platform encoding (MS949 actually) to copy filtered resources, i.e. build is platform dependent!
아마 인코딩이 MS949인데 소스가 UTF-8이라서 그런가보다.
pom.xml 파일에 다음의 내용을 기술
<properties>
<spring.maven.artifact.version>3.0.5.RELEASE</spring.maven.artifact.version>
<!--
해당 문제 발생시.
[WARN] Using platform encoding (MS949 actually) to copy filtered resources, i.e. build is platform dependent!
-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
반응형
'FullStack > 21. Java' 카테고리의 다른 글
Nexus 저장소 변경하기 (0) | 2013.03.07 |
---|---|
데이터베이스 쿼리 로그 log4jdbc (2) | 2012.10.11 |
Pdf 한글 출력 (0) | 2012.05.18 |
warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds (0) | 2012.03.30 |
[ANT] taskdef class org.apache.catalina.ant.InstallTask cannot be found (0) | 2012.03.30 |