亚洲AV无码乱码在线观看性色,免费无码又爽又刺激高潮视频,用你的指尖扰乱我下一部动漫,人妻AV中文系列,人妻熟妇女的欲乱系列

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

時(shí)間:2024-04-13 14:27:28 類(lèi)型:JAVA
字號(hào):    

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

打開(kāi)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>


<