eclipse 의 maven 플러그인을 업그레이드하거나 STS 를 업그레이드하면 m2e 플러그인이 1.0을 사용하게 된다.
이 경우 기존 환경과 다른 부분이 많아 오류가 발생하는 부분이 있다.
위처럼 프로젝트별로 maven builder 오류가 발생하면 해당 프로젝트의 .project 파일을 직접 수정하도록 한다.
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>news-telematics-service</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
... 중략
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
... 중략
</buildSpec>
<natures>
... 중략
<nature>org.eclipse.m2e.core.maven2Nature</nature>
... 중략
</natures>
</projectDescription>
<projectDescription>
<name>news-telematics-service</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
... 중략
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
... 중략
</buildSpec>
<natures>
... 중략
<nature>org.eclipse.m2e.core.maven2Nature</nature>
... 중략
</natures>
</projectDescription>
'자바' 카테고리의 다른 글
[m2eclipse] Failed to classload type while reading annotation metadata. This is a non-fatal error, but certain annotation metadata may be unavailable (0) | 2012.02.23 |
---|---|
[Spring] SpringSource TC Server (0) | 2011.12.22 |
[SpringJDBC] PreparedStatement 파라미터 로깅하기 (0) | 2011.09.27 |
[mybatis] 사용자 가이드(한국어) 등록 요청 (0) | 2011.08.24 |
[MyBatis] MyBatis 3.0 사용자 가이드 한국어 문서 공개 (10) | 2011.08.11 |