본문 바로가기
Java/Eclipse

[Ecilpse] Maven pom.xml 오류 조치

by 리요_ 2024. 11. 9.
반응형
[Ecilpse] Maven pom.xml 오류 조치
Failure to transfer org.apache.commons:commons-compress:pom:1.19 from https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted 
 until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact org.apache.commons:commons-compress:pom:1.19 from/to central 
 (https://repo.maven.apache.org/maven2): The operation was cancelled.

 

[Ecilpse] Maven pom.xml 오류 조치

 
프로젝트를 열자마자 보이는 pom.xml 오류..
이클립스에서 새 프로젝트를 clone 받거나, import, pull 등 업데이트가 있을 때 pom.xml 오류가 항상 발생합니다..


해결 방법

[Ecilpse] Maven pom.xml 오류 조치
  1. 문제가 되는 프로젝트 우클릭
  2. Run As
  3. Maven clean
  4. Maven install
  5. 프로젝트 Refresh
  6. Maven Update

이클립스에서는 작업을 진행할 때 Process에서 처리가 완료된 후 다음 단계를 진행합니다. 
순서가 꼬여 오류가 발생할 수 있습니다.. 이클립스.. ㅠ


위의 방법으로 해결이 되지 않는 경우

[Ecilpse] Maven pom.xml 오류 조치

 
.m2/repository/org/maven 폴더를 삭제 후

  • maven update
  • maven clean
  • maven install

진행해 주시면 됩니다.


위의 방법으로도 해결이 되지 않는 경우..!!

[maven] 폴더의 상위 폴더였던 .m2/repository 폴더를 싹 날려버리고 ( 백업 필수!!! )

  • maven update ( forced check )
  • maven clean
  • maven install

후 빌드하니 저는 해결이 되었습니다.ㅠㅠ
pom.xml 오류는 이제 끝......................


전자정부 프레임워크로 인해 이클립스를 사용하였지만 
라이선스가 있으신 분들은 인텔리제이 강추합니다.. 이클립스는 이제 안녕!!

반응형