如何指定 cxf-codegen-plugin 需要使用的代理。我尝试在 maven settings.xml 中指定代理,但没有被采纳。
问问题
960 次
2 回答
1
~/.m2 文件夹中的 maven settings.xml 对我来说适用于 cxf-codegen-plugin。例子:
<proxies>
<proxy>
<id>myproxy</id>
<active>true</active>
<protocol>http</protocol>
<host>proxy.example.com</host>
<port>8080</port>
<username><!-- username --></username>
<password><!-- pass --></password>
<nonProxyHosts>*.local|*.example.com</nonProxyHosts>
</proxy>
</proxies>
于 2018-03-13T13:29:21.023 回答
0
我试过了:
mvn -Dhttp.proxyHost=[_] -Dhttp.proxyPort=[_] clean package
([_] -> Your proxy data)
在控制台上工作。
于 2017-06-30T13:06:31.057 回答