无法为Maven代理端口

时间:2018-05-30 20:46:52

标签: linux maven maven-3

我可以使用 settings.xml 配置代理以便与Maven成功协作。

我决定将配置更进一步,并为每个代理的参数使用环境变量,如下所示:

<proxies>
  <proxy>
    <active>true</active>
    <protocol>https</protocol>
    <host>${env.PROXY_HOST}</host>
    <port>${env.PROXY_PORT}</port>
    <username>${env.PROXY_USER}</username>
    <password>${env.PROXY_PASSWORD}</password>
  </proxy>
</proxies>

此配置 - 特别是使用端口的环境变量 - 导致我的Maven执行中断。首先它传递了这个警告:

[WARNING] 
[WARNING] Some problems were encountered while building the effective settings
[WARNING] Unable to parse element 'port', must be an integer (position: END_TAG seen ...<port>${env.PROXY_PORT}</port>... @29:40) caused by: java.lang.NumberFormatException: For input string: "${env.PROXY_PORT}" @conf/settings.xml, line 29, column 40
[WARNING] 

并且使用错误的端口后执行失败:

org.eclipse.aether.transfer.MetadataTransferException: 
Connect to localhost:0 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused (Connection refused)

Maven能够解析主机,用户和放大器的环境变量。代理设置中的密码,但不适用于端口。

以下是如何在bash脚本中设置环境变量的示例,然后是Maven命令

PROXY_PORT=8888
export PROXY_PORT

我也试过了:

PROXY_PORT="8888"
export PROXY_PORT

为什么端口设置不像其他代理设置一样使用环境变量?

如何将环境变量用于代理端口设置?

1 个答案:

答案 0 :(得分:0)

这是一个maven报告的错误:https://issues.apache.org/jira/browse/MNG-6401(或此处:https://github.com/apache/maven/pull/163#issuecomment-390888715

替换是为主持人完成的:

  <proxies>
    <proxy>
      <active>true</active>
      <protocol>https</protocol>
      <host>${PROXY_HOST}</host>
      <port>${PROXY_PORT}</port>
      <username>${PROXY_USER}</username>
      <password>${PROXY_PASSWORD}</password>
    </proxy>
  </proxies>

这样取代:

$ PROXY_PORT=100 PROXY_HOST=http://thehost PROXY_USER=TheUser PROXY_PASSWORD=ThePassword mvn help:effective-settings | grep -FA8  '<proxies>'
  <proxies>
    <proxy>
      <protocol>https</protocol>
      <username>TheUser</username>
      <password>***</password>
      <port>0</port>
      <host>http://thehost</host>
    </proxy>
  </proxies>