解決Maven的repository配置不生效的問題


在pom.xml文件中配置repositories始終不生效,一直從自定義配置的aliyun下載,repositories配置如下

<repositories>
        <repository>
            <id>cloudera</id>
            <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <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

 

原文鏈接:https://blog.csdn.net/lovewebeye/article/details/80060410


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2026 CODEPRJ.COM