概述
当使用网上的两种方法都还不能解决问题的时候。先考虑一下,你的mavenapache-maven-3.5.4confsettings.xml 中有没有配置镜像。如果没有去配置一个阿里云镜像,
<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>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
</mirrors>
我配置镜像之后,问题就解决了
最后
以上就是阔达小丸子为你收集整理的关于在eclipse上创建maven项目时出错Could not resolve archetype的全部内容,希望文章能够帮你解决关于在eclipse上创建maven项目时出错Could not resolve archetype所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复