用于访问中央存储库的代理设置

时间:2013-11-11 09:02:10

标签: java maven repository

请告诉我在Windows中需要打开什么端口以授予对maven中央存储库的访问权限? (我正在使用代理)

1 个答案:

答案 0 :(得分:0)

最好在$HOME/.m2/settings.xml中配置proxy的信息,如下所示:

<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">
  ...
  <proxies>
    <proxy>
      <id>myproxy</id>
      <active>true</active>
      <protocol>http</protocol>
      <host>proxy.somewhere.com</host>
      <port>8080</port>
      <username>proxyuser</username>
      <password>somepassword</password>
      <nonProxyHosts>....</nonProxyHosts>
    </proxy>
  </proxies>
  ...
</settings>

您必须使用哪个端口/服务器等,除了您的管理部门之外,没有人可以说。