zoukankan      html  css  js  c++  java
  • maven切换到阿里云镜像

    maven默认去中央仓库下载jar速度奇慢,切换成阿里的镜像源会快很多

    maven  settings.xml配置

    <?xml version="1.0" encoding="UTF-8"?>
    <settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
    
    <pluginGroups />
        <proxies />
            <servers />
               <mirrors >
                   <mirror>
                       <!--该镜像的唯一标识符。id用来区分不同的mirror元素。 -->
                       <id>planetmirror.com</id>
                       <!--镜像名称 -->
                      <name>aliyun</name>
                      <!--该镜像的URL。构建系统会优先考虑使用该URL,而非使用默认的服务器URL。 -->
                     <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
                     <!--被镜像的服务器的id。例如,如果我们要设置了一个Maven中央仓库(http://repo1.maven.org/maven2)的镜像,就需要将该元素设置成central。这必须和中央仓库的id central完全一致。-->
                 <mirrorOf>central</mirrorOf>
               </mirror>
        </mirrors>
    
    
        <localRepository>C:manveRepository</localRepository>
    
    
    </settings>
  • 相关阅读:
    python django 创建app失败 升级sqlite3 或者修改数据库连接为mysql
    Decima json 化
    openpyxl excel操作
    centos添加python虚拟环境
    oracle的参数文件:pfile和spfile
    修改 db_unique_name
    工具 --- Vim
    部署 --- Nginx
    工具 --- Git使用
    django 之(五) --- RESTApi总结
  • 原文地址:https://www.cnblogs.com/xinjie10001/p/7372506.html
Copyright © 2011-2022 走看看