如何指定cxf-codegen-plugin需要使用的代理。我尝试在maven settings.xml中指定代理,但是没有选择。
答案 0 :(得分:0)
我试过了:
sudo apt-get install php5-gd
sudo service apache2 restart
在控制台上工作。
答案 1 :(得分:0)
maven settings.xml对我来说效果很好。例如:
<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>