1. 程式人生 > >maven設定代理

maven設定代理

在setting.xml裡面配置以下內容,即可使用本機代理

  <proxies>
    <!-- proxy
     | Specification for one proxy, to be used in connecting to the network.
     |
    -->
    <proxy>
      <id>ss</id>
      <active>true</active>
      <protocol>http</protocol>
      <username
>
</username> <password></password> <host>127.0.0.1</host> <port>8388</port> <nonProxyHosts></nonProxyHosts> </proxy> </proxies>