1. 程式人生 > >maven工程依賴的jar包,在本地倉庫有,但是pom.xml檔案卻報錯找不到jar包

maven工程依賴的jar包,在本地倉庫有,但是pom.xml檔案卻報錯找不到jar包

例如:Missing artifact com.ibm.db2:db2jcc_license_cisuz:jar:10.1 

但在我本地的倉庫中卻存在這個jar包,

查找了很多的資料發現了兩種解決方法:

第一種:

    在eclipse中的window->show view->other->maven Repositories開啟maven Repositories檢視,

    然後在maven Repositories檢視中選中local Repositories->Local Repository, 右鍵選擇Rebuild Index;

第二種:

    在找到錯誤中的jar包所在本地路徑,找到與jar包同文件夾下的_remote.repositories,

    刪除_remote.repositories檔案 或者修改>XX=為>=(即刪除main,當然main也可能是其他值);

    然後再右鍵工程maven->update project;