zoukankan      html  css  js  c++  java
  • 解决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

  • 相关阅读:
    MyISAM 和InnoDB 区别 转
    beautifulsoup
    爬虫学习
    python操作数据库
    爬虫
    python爬虫
    PHP中“简单工厂模式”实例讲解
    PERL 实现微信登录
    PERL 实现微信登录
    NLS_LANG SIMPLIFIED CHINESE_CHINA.AL32UTF8 和american_america.AL32UTF8
  • 原文地址:https://www.cnblogs.com/erlou96/p/13031144.html
Copyright © 2011-2022 走看看