> <?xml version="1.0"?>
> <settings>
>   <proxies>
>    <proxy>
>       <active>true</active>
>       <protocol>http</protocol>
>       <host>proxy.intra.bt.com</host>
>       <port>8080</port>
>     </proxy>
>   </proxies>
> </settings>
> 
> But this does not seem to work

Your settings.xml looks fine.  What errors are you getting?

Does your proxy server require a username/password?

Is your proxy server a Microsoft ISA proxy and hence needs NTLM?
(If it needs NTLM then Maven does not support this yet, you will need to 
use NTLMAPS http://ntlmaps.sourceforge.net/ and configure your proxy 
setting like:
    <proxy>
      <id>Local NTLMAPS</id>
      <active>true</active>
      <protocol>http</protocol>
      <username></username>
      <password></password>
      <host>localhost</host>
      <port>5865</port>
      <nonProxyHosts>10.105.49.175</nonProxyHosts>
    </proxy>
)

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to