首页 > 系统服务 > 详细

Maven 在新版eclipse报错的解决

时间:2017-09-21 12:58:14      阅读:234      评论:0      收藏:0      [点我收藏+]

转自Stack Overflow 

 

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

Then rightclick on your project in eclipse and choose Maven->"Update Project ...", make sure "Update Dependencies" is checked in the resulting dialog and click OK.

Maven 在新版eclipse报错的解决

原文:http://www.cnblogs.com/lzsnolimit/p/7567665.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!