[解决]Maven的repository配置不生效的问题

问题描述:

在pom.xml文件中配置repositories始终不生效,一直从自定义配置的aliyun下载,repositories配置如下

<repositories>
   <repository>
      <id>spring-milestones</id>
      <name>Spring Milestones</name>
      <url>https://repo.spring.io/milestone</url>
      <snapshots>
         <enabled>false</enabled>
      </snapshots>
   </repository>
</repositories>

然后去maven 的settings.xml文件看了一下,配置如下

<mirror>
<id>nexus-aliyun</id>
        <mirrorOf>*</mirrorOf>
<name>Nexus aliyun</name>

<url>http://maven.aliyun.com/nexus/content/groups/public</url>

</mirror>

解决方法:

发现,mirrorOf配置的是*,故所有的jar都会从此下载,可以修改成<mirrorOf>*,!spring-milestones</mirrorOf>即可

官网对mirrorOf的配置解释:

* = everything
external:* = everything not on the localhost and not file based.
repo,repo1 = repo or repo1
*,!repo1 = everything except repo1

猜你喜欢

转载自blog.csdn.net/lovewebeye/article/details/80060410