久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

Maven設置鏡像或者代理服務器

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

Maven默認訪問無法加載jar包,需要設置鏡像服務器或代理服務器

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

 <proxies>
   <!--  proxy
     | Specification for one proxy, to be used in connecting to the network.
       設置代理服務器
     | -->
    <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.
   | 設置鏡像
   |-->
  <mirrors>
       <mirror>
              <id>nexus-aliyun</id>
              <mirrorOf>*</mirrorOf>
              <name>Nexus aliyun</name>
              <url>http://maven.aliyun.com/nexus/content/groups/public</url>
       </mirror>
  </mirrors>


<