使用Eclipse安裝了maven外掛程式之後,建立Maven工程,發現添加依賴“Add Dependency”的時候無法自動搜尋遠程庫。
如果不能搜尋遠程庫那用這個外掛程式有啥用撒。。。
查遍了所有的maven設定檔都沒發現問題。
最後發現是外掛程式本身的問題。原因是遠程庫的索引沒有成功的建立。
很有可能安裝外掛程式之後的某一次“Update Indexes”失敗之後,導致預設的index“http://repo1.maven.org/maven2/”無法繼續更新。所以每次都會報錯: Unable to update index
for central
http
://repo1
.maven
.org
/maven2
/ 。
也就說一次更新失敗導致了以後的Update index都失敗了。
這個時候執行以下操作:
http://readthefuckingmanual.net/error/2394/
Do in eclipse: window->show view->other->maven->maven indexes. One
of the indexes is:
http://repo1.maven.org/maven2.
right-click on this
one, and try rebuild index.
If that does not work, create a new index with
the same address, and do a rebuild of that. With me that worked, and I could
remove the original one. After this a restart of eclipse will NOT show the error
anymore, and the add dependency search function operates as it should. Problem
solved.
另外,參考 http://forum.springside.org.cn/redirect.php?tid=2876&goto=lastpost ,可以獲得加快索引建立的方法。