当前位置:   article > 正文

Maven配置远程仓库_maven远程

maven远程

方法一:修改maven配置文件

我使用的是IDEA编译器,使用maven自己的库下载文件非常的慢。阿里代理了很多公共的maven仓库,使用maven.aliyun.com中的仓库地址作为下载源,速度更快更稳定。

打开你的maven的安装地址,找到conf文件夹下面的settings.xml文件并打开,在<mirrors></mirrors>标签中间插入镜像的配置参数。

  1. <mirror>
  2. <id>aliyunmaven</id>
  3. <mirrorOf>central</mirrorOf>
  4. <name>central库</name>
  5. <url>https://maven.aliyun.com/repository/central</url>
  6. </mirror>

如果需要替换的话,将URL中的地址替换为下表中的Path列所对应的url。

Repository

Type

Policy

Path

apache snapshots

proxy

SNAPSHOT

https://maven.aliyun.com/repository/apache-snapshots

central

proxy

RELEASE

https://maven.aliyun.com/repository/central

google

proxy

RELEASE

https://maven.aliyun.com/repository/google

gradle-plugin

proxy

RELEASE

https://maven.aliyun.com/repository/gradle-plugin

jcenter

proxy

RELEASE

https://maven.aliyun.com/repository/jcenter

spring

proxy

RELEASE

https://maven.aliyun.com/repository/spring

spring-plugin

proxy

RELEASE

https://maven.aliyun.com/repository/spring-plugin

public

group

RELEASE

https://maven.aliyun.com/repository/public

releases

hosted

RELEASE

https://maven.aliyun.com/repository/releases

snapshots

hosted

SNAPSHOT

https://maven.aliyun.com/repository/snapshots

grails-core

proxy

RELEASE

https://maven.aliyun.com/repository/grails-core

mapr-public

proxy

RELEASE

https://maven.aliyun.com/repository/mapr-public

保存并重启编译器即可。

方法二:修改项目的pom.xml文件

打开你的项目,找到pom.xml文件,在<repositories></repositories>中添加<repository></repository>仓库,格式如下。仓库的地址同第一种方法中的仓库地址。

  1. <repositories>
  2. <repository>
  3. <id>maven-ali</id>
  4. <url>https://maven.aliyun.com/repository/public</url>
  5. <releases>
  6. <enabled>true</enabled>
  7. </releases>
  8. <snapshots>
  9. <enabled>true</enabled>
  10. <updatePolicy>always</updatePolicy>
  11. <checksumPolicy>fail</checksumPolicy>
  12. </snapshots>
  13. </repository>
  14. </repositories>

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/87555
推荐阅读
相关标签
  

闽ICP备14008679号