maven创建webapp报错

最近使用maven创建webapp时报出一下错误:

Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:1.0 from any of the configured repositories.
Could not resolve artifact org.apache.maven.archetypes:maven-archetype-webapp:pom:1.0
Missing org.apache.maven.archetypes:maven-archetype-webapp:pom:1.0

maven创建webapp报错_第1张图片


出现这个问题是maven仓库里的 maven-archetype-webapp 包不完整或其他问题导致的。

尝试添加Remote Catalog如下:

maven创建webapp报错_第2张图片


重新创建项目选择Archetype时发现所有的选项都不见了(Catalog File 可以访问),没有很好的解决,最终解决方式如下:

打开本地仓库maven-archetype-webapp所在位置,删除该文件夹,maven会重新从远程仓库中下载,再次创建webapp就ok啦,方法暴力,但简单

你可能感兴趣的:(日常错误,MAVEN)