为cxf-codegen-plugin指定代理

时间:2014-07-16 06:46:49

标签: maven cxf-codegen-plugin

如何指定cxf-codegen-plugin需要使用的代理。我尝试在maven settings.xml中指定代理,但是没有选择。

2 个答案:

答案 0 :(得分:0)

我试过了:

sudo apt-get install php5-gd

sudo service apache2 restart

在控制台上工作。

答案 1 :(得分:0)

对于cxf-codegen-plugin,〜/ .m2文件夹中的

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>