Apache Maven - How To Enable Proxy Setting
There might be a chance in your company is that a firewall is set up a and an HTTP proxy server to stop user to connect to internet directly. If you are behind a proxy, Maven will fail to download any dependencies. To make it work, you have to declare the proxy server setting in Maven configuration file settings.xml . It can be found in conf directory, i.e., {M2_HOME}/conf/settings.xml. {M2_HOME}/conf/settings.xml <! -- proxies | This is a list of proxies which can be used on this machine to connect to the network. | Unless otherwise specified ( by system property or command-line switch ) , the first proxy | specification in this list marked as active will be used. | -- > < proxies > <! -- proxy | Specification for one proxy, to be used in connecting to the network. | < proxy > < id > optional </ id > < active > true </ active > < protocol > http </...