Maven仓库配置

maven-settings.xml配置本地仓库目录

<localRepository>D:softwaremaven
epo</localRepository>

maven-settings.xml配置阿里云,中央仓库,CDH仓库

   <mirror>
      <id>alimaven</id>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
      <mirrorOf>central</mirrorOf>        
    </mirror>
    <mirror>
      <id>central-repos</id>
      <name>Nexus aliyun</name>
      <url>http://repo.maven.apache.org/maven2</url>
      <mirrorOf>central1</mirrorOf>        
    </mirror> 
    <mirror>
      <id>cloudera</id>
      <name>CDH</name>
      <url>https://repository.cloudera.com/artifactory/cloudera-repos/</url>
      <mirrorOf>central2</mirrorOf>  
    </mirror>
原文地址:https://www.cnblogs.com/iFanLiwei/p/13044034.html