日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

Maven設(shè)置鏡像或者代理服務(wù)器

時間:2024-04-13 14:27:28 類型:JAVA
字號:    

Maven默認(rèn)訪問無法加載jar包,需要設(shè)置鏡像服務(wù)器或代理服務(wù)器

打開maven主目錄  conf/setting.xml文件

 <proxies>
   <!--  proxy
     | Specification for one proxy, to be used in connecting to the network.
       設(shè)置代理服務(wù)器
     | -->
    <proxy>
      <id>optional</id>
      <active>true</active>
      <protocol>http</protocol>
      <host>127.0.0.1</host>
      <port>7890</port>
      <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
    </proxy>
   
  </proxies>

  

  <!-- mirrors
   | This is a list of mirrors to be used in downloading artifacts from remote repositories.
   | 設(shè)置鏡像
   |-->
  <mirrors>
       <mirror>
              <id>nexus-aliyun</id>
              <mirrorOf>*</mirrorOf>
              <name>Nexus aliyun</name>
              <url>http://maven.aliyun.com/nexus/content/groups/public</url>
       </mirror>
  </mirrors>


<