[Eclipse] Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build ....
ITWeb/개발일반 2015. 1. 29. 16:28보통 eclipse 에서 maven 프로젝트 사용 시 이런 에러가 발생 할 경우 해결 방법.
[에러]
Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build ....
[해결방법]
<pluginManagement>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<versionRange>[0.0.1,)</versionRange>
<goals>
<goal>regex-property</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
※ <build> 태그 아래 위 code를 추가해 주면 됩니다.
여기서 수정하셔야 하는 부분은
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <goal>regex-property</goal>
내용에 맞게 수정해서 추가해 주시면 됩니다.
ctrl + 1
Ctrl + O : 모든 클래스, 프로퍼티 트리 보기, 선택가능
Ctrl + Shift + L : 단축키 보기 (한 번 더 누르면 키 설정메뉴로 들어감)
Ctrl + Shift + T : 클래스 찾기
Ctrl + Shift + R : 자원열기(귀찮게 폴더를 안찮아보고 파일명으로 열수 있다)
Alt + Shift + R : 변수 이름 변경하기 전에 누르면 변수를 사용한 모든 곳이 바뀐다. (리팩토링용
CTL + ALT + Down : 현재줄 아래로 카피