maven报错,提示Missing artifact…jar文件 ,其实这些jar包在本地.m2/repository是有的。
maven中的本地仓库的index索引没有更新导致,项目使用maven管理jar包,很容易因为各种原因(网速慢、断网)导致jar包下载不下来,出现很多.lastUpdated文件。
解决方案:
首先尝试
工程右键–Maven–Update Project ,一定要选择离线状态一定要选择Offline
如果不行,按下面步骤:
1 ,删除.lastUpdated文件
开始--运行--cmd ,通过命令行进入D:\.m2\repository
粘贴:for /r %i in (*.lastUpdated) do del %i
回车,删除所有的
如果解决不了,可删掉所有_maven.repositories文件
2,在eclipse中打开菜单 window-> show view –> other –> Maven -> maven repositories
打开之后,选择local repositories –> local repository ,右击,选择Build index.
3,工程右键--Maven--Update Project ,一定要选择离线状态一定要选择Offline