程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> JAVA編程 >> JAVA綜合教程 >> maven中常遇到的一些錯誤,maven中常遇到錯誤

maven中常遇到的一些錯誤,maven中常遇到錯誤

編輯:JAVA綜合教程

maven中常遇到的一些錯誤,maven中常遇到錯誤


1,eclipse could not resolve archetype這個是在eclipse創建項目時,選擇archetype時出現的:

在新建maven工程時報錯:

Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quickstart:RELEASE from any of the configured repositories. 
 Could not resolve artifact 
   Missing org.apache.maven.archetypes:maven-archetype-quickstart:pom:RELEASE

 

could not resolve archetype這個錯誤出現的原因是,在創建項目時使用的是我自己配置的maven倉庫中心,但是未啟動nexus服務器,這時就會在maven中找不到。但是重新啟動nexus時,它不會再重新嘗試獲取了。這個在錯誤的詳細信息中會有提示。

 

could not resolve archetype解決辦法是刪除maven倉庫下載的jar,即在maven的settings.xml配置的下載路徑,並且更換一個workplace,然後重新配置一下maven,

 

重新導入項目就可以了。

 

2,was cached in the local repository, resolution will not be reattempted until the update interval of nexus has elapsed or updates are forced -> [Help 1]

這個錯誤一般是在第一次更新jar的時候沒有啟動中心倉庫nexus,但是重新啟動後,它又不更新了。目前我的解決方法的是進入到nexus的目錄下D:\Soft\windows\nexus-2.14.0-01-bundle\sonatype-work\nexus\storage\central,找到你更新失敗的那個jar包的目錄。重新在eclipse中 install 一下就可以了。這是maven中經常遇到的錯誤之一

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved