如果在pom.xml总是显示找不到对应的包,那么应该考虑一下是否是settings.xml中设置的镜像源地址不正确。
按照此前我在网上寻找的阿里镜像大多是下面这种:
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central</url>
</mirror>
但是根据该
博客
所述,阿里的镜像服务进行了改版,镜像源地址发生了变更,如下所示:
<mirror>
<id>nexus-aliyun</id>
<name>Nexus aliyun</name>
<url>https://maven.aliyun.com/repository/central</url>
<mirrorOf>central</mirrorOf>
</mirror>
当我更改成功后,就没有再出现Package not found的问题了!
希望能够对读者有帮助!
版权声明:本文为qq_43872529原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。