码迷,mamicode.com
首页 > 系统相关 > 详细

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

时间:2015-06-04 20:47:21      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

错误提示

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>

 

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

标签:

原文地址:http://www.cnblogs.com/pixy/p/4552767.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!