[摘自] http://stackoverflow.com/questions/5074063/maven-error-failure-to-transfer


Remove all your failed downloads:


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

相关文章:

  • 2021-05-18
  • 2021-10-10
  • 2021-10-24
  • 2021-07-21
  • 2021-04-11
  • 2022-03-11
  • 2021-11-18
  • 2021-09-28
猜你喜欢
  • 2022-12-23
  • 2021-03-31
  • 2022-12-23
  • 2022-12-23
  • 2021-06-06
  • 2021-09-25
相关资源
相似解决方案