有时候maven下载的jar包不全就会变成.lastUpdated后缀的文件,这样的jar包不能用一直报错,
在maven仓库文件夹打开cmd窗口运行命令删除后缀为.lastUpdated的文件,在重新下载jar
for /r %i in (*.lastUpdated) do del %i