Maven 国内仓库

Maven官方中央仓库在国内访问实在是太鸡肋。阿里的仓库同步官方仓库不是很及时,所以存在新更新的包无法自动导入的情况,经过在全网一番精心寻找,终于找到一个和maven官网仓库差不多同步的maven仓库,并且测试在国内的下载速度不是很慢。

国内著名的仓库就是阿里的maven仓库:https://maven.aliyun.com/mvn/view

    <mirror>
        <id>aliyunmaven</id>
        <mirrorOf>*</mirrorOf>
        <name>阿里云公共仓库</name>
        <url>https://maven.aliyun.com/repository/public</url>
    </mirror>

Pentaho的仓库:https://nexus.pentaho.org/

    <mirror>
        <id>nexus-pentaho</id>
        <mirrorOf>central</mirrorOf>
        <name>Nexus pentaho</name>
        <url>https://nexus.pentaho.org/content/repositories/omni/</url>
    </mirror>

安全问题:

FYI:

https://baike.baidu.com/item/Pentaho/3674418?fr=aladdin

猜你喜欢

转载自www.cnblogs.com/apresunday/p/12587454.html
今日推荐