解决Eclipse使用Maven下载慢的问题

开发过程中在pom.xml中添加pom的时候,默认是需要从中央仓库中下载,但是下载的速度是非常慢的,超过一定的时间可能就觉得是eclipse卡死了。
解决办法是在maven中添加阿里的镜像。
具体的操作步骤是:

方法一:

1.找到maven安装目录下conf文件夹下的settings.xml文件
2.在mirrors中添加阿里的镜像

 <mirrors>
    

  <mirror>
    <id>alimavenid>
    <name>aliyun mavenname>
    <url>http://maven.aliyun.com/nexus/content/groups/public/url>
    <mirrorOf>centralmirrorOf>
  mirror>

  <mirror> 
    <id>ukid>  
    <mirrorOf>centralmirrorOf>  
    <name>Human Readable Name for this Mirror.name>  
    <url>http://uk.maven.org/maven2/url> 
  mirror>

  <mirror>
    <id>CNid>
    <name>OSChina Centralname>
    <url>http://maven.oschina.net/content/groups/public/url>
    <mirrorOf>centralmirrorOf>
  mirror>

  <mirror>
    <id>nexusid>
    <name>internal nexus repositoryname>
    
    <url>http://repo.maven.apache.org/maven2url>
    <mirrorOf>centralmirrorOf>
  mirror>

  mirrors>

方法二

直接在pom.xml上改

<repositories>
        <repository>
            <id>aliyunid>
            <name>aliyunname>
            <url>http://maven.aliyun.com/nexus/content/groups/public/url>
            <layout>defaultlayout>
            <releases>
                <enabled>trueenabled>
                <updatePolicy>neverupdatePolicy>
            releases>
            <snapshots>
                <enabled>trueenabled>
                <updatePolicy>neverupdatePolicy>
            snapshots>
        repository>
    repositories>
    <pluginRepositories>
            <pluginRepository>
            <id>aliyunid>
            <name>aliyunname>
            <url>http://maven.aliyun.com/nexus/content/groups/public/url>
            <releases>
                <enabled>trueenabled>
            releases>
            <snapshots>
                <enabled>falseenabled>
            snapshots>
            pluginRepository>
        pluginRepositories>

你可能感兴趣的:(maven,java-虚拟机,java)