今天用Eclipse创建Maven多模块项目的时候提示错误:
could not resolve archetype
******release from any of the configured repositories
这个问题网上主要是两个解决方案:
1.是修改setting.xml文件
详情请见:http://www.cnblogs.com/dingyingsi/p/3616802.html
2.是添加新的Catalog配置
详情请见:http://blog.csdn.net/afgasdg/article/details/12757433/
但是,这两种方法都没有解决我的问题。我用到的是第三种:
首先,下载maven-archetype-quickstart-1.1.jar;
然后,安装上面的jar包,命令如下:
mvn install:install-file -DgroupId=org.apache.maven.archetypes -DartifactId=maven-archetype-site-simple -Dversion=1.1 -Dpackaging=jar -Dfile=maven-archetype-site-simple-1.1.jar
最后,重启Eclipse就好了。