当前位置: 代码迷 >> Web前端 >> 解决eclipse创设maven项目报错!Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp
  详细解决方案

解决eclipse创设maven项目报错!Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp

热度:1855   发布时间:2012-10-21 09:00:07.0
解决eclipse创建maven项目报错!Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:

我是使用代理上网的。在创建maven时报以下错误:

Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the configured repositories.

 

 

解决办法: 首先找到 config/settting.xml 在里面添加代理信息 ----------  这个是重点:

  <proxies>
  <proxy>
      <id>my-proxy</id>
      <active>true</active>
      <protocol>http</protocol>
      <username>dgfd514</username>
      <password>165415</password>
      <host>10.101.1.6</host>
      <port>80</port>
     <!-- <nonProxyHosts>local.net|some.host.com</nonProxyHosts> -->
    </proxy>

  </proxies>

 

然后重创建maven项目,表示本地测试创建成功

 

  相关解决方案