Maven) failure to transfer org.apache.maven.plugins error

북마크 추가

1. .m2 폴더의 다운로드 실패된 라이브러리 제거


linux 


find ~/.m2  -name "*.lastUpdated" -exec grep -q "Could not transfer" {} \; -print -exec rm {} \; 

 

windows

 

cd %userprofile%\.m2\repository

for /r %i in (*.lastUpdated) do del %i

 

 

2. 프로젝트 우클릭 -> maven -> update project

 


 

 

AD
관리자
2017-04-11 10:28
SHARE