Nexus添加新Repository后Maven仍找不到jar包的解决方案

来源:互联网 发布:如何在淘宝上买学分 编辑:程序博客网 时间:2024/06/05 18:41

原文出处:http://www.goomoon.com/it/program/J2EE/4357.html


maven需要个伙伴那就是“私服”,个人只接触过nexus,所以就用nexus了。。。


几步配置以后(很简单 网上很多教程),所有jar就都从nexus中下载了,并且可以方便的添加自己jar和自己的非主流repository。。。

但在使用一段时间后,有个问题不断浮现,并且一直困扰我,就是当我要build一个工程的时候,报错说缺少xxx.jar包,ok,一般情况下是不在正常的repository中,要添加其他的repository(比如:scala-tools.org),之后我去nexus中加一个proxy repository后并且配入public repository,并欣喜的启动maven,但还是有如此错误

Failure to find xxx:jar:1.0 in http://localhost:8081/nexus-webapp-1.9.0/content/groups/public/ was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced

但问题我已经配好了啊!最后关键就是错误中这段was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced

之后 去自己的.m2 文件夹下把 xxx.lastUpdated文件全部删掉,重新运行maven,ok!或者在用maven时加 -U参数,就可以忽略xxx.lastUpdated..

有人说这样也可以:

就是去nexus里去先"Update Index"再"Expire Cache"...但我试了貌似没有效果
0 0
原创粉丝点击