Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webap

使用maven创建项目是报上述错误最简单的解决办法是讲本地的maven
jar 包下载地址换成阿里镜像。速度飞快!

具体方法:找到你的maven配置文件settings.xml,添加阿里镜像

<mirrors>  
        <mirror>  
          <id>aliyunid>  
          <name>aliyunname>     
                         <url>http://maven.aliyun.com/nexus/content/groups/public/url>  
          <mirrorOf>centralmirrorOf>  
        mirror>  
    mirrors>  

你可能感兴趣的:(tools—develop)