maven install "install" plugin totally offline

55 views Asked by At

I'm absolutely behind corporate firewall on my working place, so I need to fill my local repository. But I'm not able to do it as I'm missing even the "install" plugin itself. How can I resolve this problem? Thanks!

1

There are 1 answers

0
pjanssen On

You need to configure a proxy in your settings.xml. This is probably a duplicate question.

<proxies> <proxy> <id>myproxy</id> <active>true</active> <protocol>http</protocol> <host>proxy.somewhere.com</host> <port>8080</port> <username>proxyuser</username> <password>somepassword</password> <nonProxyHosts>*.google.com|ibiblio.org</nonProxyHosts> </proxy> </proxies>