Maven报错:maven-archetype-webapp:RELEASE from any of the configured repositories

今天学习maven,在控制台下新建maven项目没有问题,可是在STS(eclipse)下建立maven项目总是报错,郁闷死了:web

----------------------------------------------------apache

错误信息:Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositories.
Could not resolve artifact
Failed to resolve version for org.apache.maven.archetypes:maven-archetype-webapp:pom:RELEASE: Could not find metadata org.apache.maven.archetypes:maven-archetype-webapp/maven-metadata.xml in local (F:\maven\repository)
Failed to resolve version for org.apache.maven.archetypes:maven-archetype-webapp:pom:RELEASE: Could not find metadata org.apache.maven.archetypes:maven-archetype-webapp/maven-metadata.xml in local (F:\maven\repository)app

----------------------------------------------------框架

遇到问题,就是baidu/google查找解决方法,惋惜网上不少人提到的方法试了都不行,郁闷了好几个小时,最后找到问题缘由以下:eclipse

 

以上报错的缘由是:在settings.xml 文件中 mirrors出了问题。默认maven3.1.0安装目录下的conf目录下的setting.xml配置文件中的mirrors配置是这样的:webapp

 

Xml代码 复制代码  收藏代码
  1. <mirrors>  
  2.   <!-- mirror   
  3.    | Specifies a repository mirror site to use instead of a given repository. The repository that   
  4.    | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used   
  5.    | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.   
  6.    |   
  7.   <mirror>  
  8.     <id>mirrorId</id>  
  9.     <mirrorOf>repositoryId</mirrorOf>  
  10.     <name>Human Readable Name for this Mirror.</name>  
  11.     <url>http://my.repository.com/repo/path</url>  
  12.   </mirror>  
  13.    -->  
  14. </mirrors>  
  <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>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
  </mirrors>

 

我也不是很清楚为何就是不行(猜想是maven默认的internet仓库里的文件不全,因此就添加了你们用得最多的maven的internet仓库之一:lbiblio,基本全部的开源的框架的jar文件都有提供),而后在setting.xml配置文件上面我添加了一个新的mirror,添加后以下:maven

 

Xml代码 复制代码  收藏代码
  1. <mirrors>  
  2.   <!-- mirror   
  3.    | Specifies a repository mirror site to use instead of a given repository. The repository that   
  4.    | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used   
  5.    | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.   
  6.    |   
  7.   <mirror>  
  8.     <id>mirrorId</id>  
  9.     <mirrorOf>repositoryId</mirrorOf>  
  10.     <name>Human Readable Name for this Mirror.</name>  
  11.     <url>http://my.repository.com/repo/path</url>  
  12.   </mirror>  
  13.    -->  
  14.    <!--如下是新增长上去的-->  
  15.    <mirror>    
  16.       <id>ibiblio.org</id>    
  17.       <name>ibiblio Mirror of http://repo1.maven.org/maven2/</name>    
  18.       <url>http://mirrors.ibiblio.org/pub/mirrors/maven2</url>    
  19.       <mirrorOf>central</mirrorOf>    
  20.    </mirror>    
  21.   
  22. </mirrors>  
  <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>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
     <!--如下是新增长上去的-->
     <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>

就只是修改了setting.xml配置文件上的这个地方,而后在控制台下我从新输入:学习

mvn help:systemthis

回车,就能够看到从新下载了好多的jar包文件。google

等下载完成后,再在eclipse新建maven项目就正常了。

相关文章
相关标签/搜索