Configuring Maven behind an NTLM proxy

Configuring Maven behind an NTLM proxy

Maven, by itself, cannot work behind an NTLM proxy (e.g. ISA servers), because this kind of HTTP connection is not supported... at least directly.

But you're not lost, since you can use a "proxy-to-the-proxy". You have two choices, CNTLM and  NTLM APS.

Using CNTLM 

CNTLM is easy to install and configure. Once installed as reported in the website, configure Maven to work with CNTLM, adding this code in your settings.xml.

<settings>
  <proxies>
   <proxy>
      <active>true</active>
      <protocol>http</protocol>
      <host>127.0.0.1</host>
      <port>3128</port>
    </proxy>
  </proxies>
</settings>

Et voilĂ ! Maven works!

Using NTLM APS

NTLM has a bug with chunked responses, so you have to patch it, so I suggest to use CNTLM.

Anyway, if you want to make NTLM APS work:

  1. download the 0.9.9.6 version of NTLM APS;
  2. patch using this patch;
  3. run the NTLM APS server;
  4. configure Maven to work with NTLM APS, adding this code in your settings.xml.
    <settings>
      <proxies>
       <proxy>
          <active>true</active>
          <protocol>http</protocol>
          <host>127.0.0.1</host>
          <port>5865</port>
        </proxy>
      </proxies>
    </settings
Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.
  1. Jan 17, 2008

    Antonio Petrelli says:

    I found that also cntlm can be used, but I have to test it before changing the w...

    I found that also cntlm can be used, but I have to test it before changing the wiki:

    http://cntlm.sourceforge.net/