搞 maven install 模塊的時候報錯:html
Failure to find com.rongpd:rpd:pom:1.0 in xxx was cached in the local repository, resolution will not be reattempted until the update interval of maven-aliyun has elapsed or updates are forced
由於我想 install 的模塊是 core , 它依賴 kit模塊, 而 kit 模塊 已經 install 成功了。 apache
他們都一個 父模塊。 在 install core的時候就不行了。 maven
從上面的提示,特別是最後一句, 差很少了 阿里雲 maven庫 不能更新或者下載不來 core jar包。。。阿里雲
由於 配置的是 阿里雲的庫。 這個 錯誤 確定的了,由於怎麼可能從阿里雲庫下載到 core 這個項目模塊?code
而 第一句的錯誤,就看起 來 比較奇怪,看不出什麼意思。固然了 com.rongpd 是 項目的 包 前綴了。xml
百度參考一下:htm
https://zhidao.baidu.com/question/1959276738138777220.htmlip
The project com.creditcloud:Gateway:1.0-SNAPSHOT (F:\工做\部署文檔\Gateway\pom.xml) has 1 error Non-resolvable parent POM: Failure to find com.creditcloud:Parent:pom:1.0.0 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced and 'parent.relativePath' points at wrong local POM @ line 9, column 13 -> [Help 2] 找不到 com.creditcloud:Parent:pom:1.0.0 若你是用多模塊的話,先到 Parent 裏面,mvn clean install
報錯和個人很相似。文檔
因而 試着 在父模塊 進行 編譯和打包: mvn clean install -Dmaven.test.skip=true部署
果真成功了。
成功以後, 繼續在 core 模塊,單獨進行 install 也成功了。估計須要先從父模塊 install 成功以後,才能夠到 子模塊的