eclipse could not resolve archetype xxxxxxx from any of the configured repositories

错误提示

Eclipse中通过Archetype创建Maven项目时报错:Could not resolve archetype xxxxxxx from any of the configured repositories

技术分享


技术分享

 

 

解决方法

Maven安装目录/conf/settings.xml文件的<settings>元素里加入第三方的仓库镜像(这里用了lbiblio仓库)。

<settings>
  <mirrors>
      <!-- mirror
       | Specifies a repository mirror site to use instead of a given repository. The repository that
       | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
       | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
       -->
       <mirror> 
          <id>ibiblio.org</id> 
          <name>ibiblio Mirror of http://repo1.maven.org/maven2/</name> 
          <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url> 
          <mirrorOf>central</mirrorOf> 
       </mirror> 
    </mirrors>
......
</settings>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。