반응형

기존 프로젝트를 Maven Project로 변환하고 나서, 라이브러리를 지정해줬더니 아래와 같이 문제가 발생했다.

 

2022.11.08 - [IT/이클립스(Eclipse)] - [이클립스/Eclipse] 이클립스(Eclipse) 자바 프로젝트 Maven 프로젝트로 변경하는 방법

 

[이클립스/Eclipse] 이클립스(Eclipse) 자바 프로젝트 Maven 프로젝트로 변경하는 방법

기존에 사용했던 프로젝트가 pom.xml이 없어서 dependency 추가도 어렵고 관리를 하기도 힘들었다. 그래서, 이 기회에 자바 프로젝트를 Maven 프로젝트로 변환을 해서 pom.xml을 생성하고 라이브러리 관

yongku.tistory.com

 

Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (execution: default-compile, phase: compile)

Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (execution: default-compile, phase: compile)

 

이 문제를 해결하는 방법은 간단하다.

 

1. 일단, pom.xml에 아래의 dependency를 추가한다.

<dependencies>
		<!-- https://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin -->
		<dependency>
			<groupId>org.apache.maven.plugins</groupId>
			<artifactId>maven-resources-plugin</artifactId>
			<version>2.7</version>
		</dependency>
  </dependencies>

 

2. 추가를 하고 나서, [프로젝트 오른쪽 클릭] - [Run As] - [Maven install]을 해준다.

 

3. 그 다음, 다시 [프로젝트 오른쪽 클릭] - [Maven] - [Update Project...]를 클릭하여 update를 해주면 된다.

반응형

'IT > 이클립스(Eclipse)' 카테고리의 다른 글

[이클립스/Eclipse] 이클립스(Eclipse) Result Maps collection already contains value for Common.UserMap 문제 해결 방법  (0) 2022.11.23
[이클립스/Eclipse] 이클립스(Eclipse) Attribute "type" is required and must be specified for element type "resultMap". 문제 해결 방법  (0) 2022.11.23
[이클립스/Eclipse] 이클립스(Eclipse) More than one fragment with the name [spring_web] was found. This is not legal with relative ordering. See section 8.2.2 2c of the Servlet specification for details. Consider using absolute ordering. 문제 ..  (0) 2022.11.17
[이클립스/Eclipse] 이클립스(Eclipse) Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:3.5.1:testCompile (execution: default-testCompile, phase: test-compile) 문제 해결 방법  (0) 2022.11.16
[이클립스/Eclipse] 이클립스(Eclipse) Project configuration is not up-to-date with pom.xml. Select: Maven->Update Project... from the project context menu or use Quick Fix. 문제 해결 방법  (0) 2022.11.08
[이클립스/Eclipse] 이클립스(Eclipse) Could not initialize class org.apache.maven.plugin.war.util.WebappStructureSerializer 문제 해결 방법  (0) 2022.11.08
[이클립스/Eclipse] 이클립스(Eclipse) 자바 프로젝트 Maven 프로젝트로 변경하는 방법  (0) 2022.11.08
[이클립스/Eclipse] 이클립스(Eclipse) Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:mav..  (0) 2022.11.08
  • 네이버 블러그 공유하기
  • 네이버 밴드에 공유하기
  • 페이스북 공유하기
  • 카카오스토리 공유하기