모종닷컴

ArtifactTransferException: Failure to transfer ... 본문

Programming/JAVA

ArtifactTransferException: Failure to transfer ...

모종 2018. 8. 27. 16:24
반응형

메이븐, 스프링 부트 cli 설치 후 이클립스에서 spring boot 프로젝트를 만들 때 났었던 에러입니다.



Error ====================================================================================

ArtifactTransferException: Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:3.0.2 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.maven.plugins:maven-resources-plugin:pom:3.0.2 from/to central (https://repo.maven.apache.org/maven2): The operation was cancelled.

java.lang.reflect.InvocationTargetException

========================================================================================



원인 : *.lastUpdated 파일이 업데이트에 대한 메이븐 검사를 차단하고 필요한 jar파일을 다운로드하지 못하게 하는 것.


해결 : /{user}/.m2/repository 안에 있는 .lastUpdated 파일을 삭제하는 것.


cd %userprofile%\.m2\repository 
for /r %i in (*.lastUpdated) do del %i



반응형

'Programming > JAVA' 카테고리의 다른 글

자바8 - List  (0) 2018.10.02
자바8 - 제네릭  (2) 2018.09.03
자바 8 - 람다식  (0) 2018.08.19
Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/bind/DatatypeConverter  (0) 2018.05.27
메이븐(Maven)이란?  (0) 2018.03.17