Maven仓库配置


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

<localRepository>D:\software\maven\repo</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>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM