报错:Could not transfer artifact com.alibaba:fastjson:pom:1.2.83 from/to clojars...
背景:需要将fastjson从1.2.70升级到1.2.83;并且编译环境是局域网不可以连接互联网;每个项目组都是独立的私有仓库。
操作:在本机的另一个项目私有仓库中找到了1.2.83的包,直接复制到了这个项目的私有仓库中
现象:在idea可以正常运行,并且在【external Libraries】中看到fastjson的版本已经更新为1.2.83;打包时则提示上述错误。
解决方案:修改《_remote.repositories》文件中的内容。
参考本项目中1.2.70的《_remote.repositories》,修改1.2.83的《_remote.repositories》
保存后,在idea上对maven做一次reload,再clean,然后package就正常打包了。