reyes

maven的仓库只有两大类:1.本地仓库 2.远程仓库,在远程仓库中又分成了3种:2.1 中央仓库 2.2 私服 2.3 其它公共库

1.配置本地仓库

<settings>  
    <localRepository>D:\maven_new_repository</localRepository>  
</settings>  

2.配置远程仓库(国内配置阿里云仓库速度比较快)

<mirrors>
  <mirror>
    <id>alimaven</id>
    <name>aliyun maven</name>
    <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
     <mirrorOf>central</mirrorOf>
  </mirror>
</mirrors>

分类:

技术点:

相关文章:

  • 2021-05-19
  • 2021-05-12
  • 2021-12-08
  • 2021-12-23
  • 2021-09-30
  • 2021-12-08
  • 2021-09-27
猜你喜欢
  • 2021-08-29
  • 2021-09-27
  • 2021-09-27
  • 2021-06-29
  • 2021-09-27
  • 2021-12-08
相关资源
相似解决方案