• Maven 仓库地址


    一、Maven 中央仓库地址

    1. http://www.sonatype.org/nexus/
    2. http://mvnrepository.com/ (本人推荐仓库)
    3. http://repo1.maven.org/maven2

    二、Maven 中央仓库地址大全

    1、阿里中央仓库(首选推荐)
    <repository>  
        <id>alimavenid>
        <name>aliyun mavenname>
        <url>http://maven.aliyun.com/nexus/content/groups/public/url>
    repository> 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    2、camunda.com 中央仓库(第 2 推荐使用)
    <repository>  
        <id>activiti-repos2id>  
        <name>Activiti Repository 2name>  
        <url>https://app.camunda.com/nexus/content/groups/publicurl>  
    repository>   
    
    • 1
    • 2
    • 3
    • 4
    • 5
    3、spring.io 中央仓库
    <repository>  
        <id>springsource-reposid>  
        <name>SpringSource Repositoryname>  
        <url>http://repo.spring.io/release/url>  
    repository>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    4、maven.apache.org 中央仓库

    <repository>  
        <id>central-reposid>  
        <name>Central Repositoryname>  
        <url>http://repo.maven.apache.org/maven2url>  
    repository>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    5、maven.org 中央仓库

    <repository>  
        <id>central-repos1id>  
        <name>Central Repository 2name>  
        <url>http://repo1.maven.org/maven2/url>  
    repository>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    6、alfresco.com 中央仓库(第 3 推荐使用)

    <repository>
      <id>activiti-reposid>
      <name>Activiti Repositoryname>
      <url>https://maven.alfresco.com/nexus/content/groups/publicurl>
    repository>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    7、oschina 中央仓库(需要 x 墙哟)

    <repository>  
        <id>oschina-reposid>  
        <name>Oschina Releasesname>  
        <url>http://maven.oschina.net/content/groups/publicurl>  
    repository>  
    
    • 1
    • 2
    • 3
    • 4
    • 5

    8、oschina thinkgem 中央仓库(需要 x 墙哟)

    <repository>   
        <id>thinkgem-reposid>   
        <name>ThinkGem Repositoryname>  
        <url>http://git.oschina.net/thinkgem/repos/raw/masterurl>  
    repository> 
    
    • 1
    • 2
    • 3
    • 4
    • 5

    9、java.net 中央仓库(需要 x 墙哟)

    <repository>  
        <id>java-reposid>  
        <name>Java Repositoryname>  
        <url>http://download.java.net/maven/2/url>  
    repository>
    
    • 1
    • 2
    • 3
    • 4
    • 5

    10、github.com 中央仓库(需要 x 墙哟)

    <repository>   
        <id>thinkgem-repos2id>   
        <name>ThinkGem Repository 2name>  
        <url>https://raw.github.com/thinkgem/repository/masterurl>  
    repository>
    
    • 1
    • 2
    • 3
    • 4
    • 5
  • 相关阅读:
    大模型的实践应用2-基于BERT模型训练医疗智能诊断问答的运用研究,协助医生进行疾病诊断
    如何做好商品的库存管理?哪些指标是衡量库存的指标
    关于TypeScript中的泛型,希望这次能让你彻底理解
    java-String原理-创建对象的个数
    【Machine Learning】02-Advanced Learning Algorithms
    分页条件搜索
    探索图像检索:从理论到实战的应用
    航天与航空的区别,今天终于弄清楚啦!
    Nexus数据备份&恢复
    概率公式c的计算
  • 原文地址:https://blog.csdn.net/Primary_wind/article/details/133759429