how to set maven proxy settings
If your network proxy is correct and maven is unable to download dependencies or connection getting timeout then we need to setup the maven proxy settings to get access to the internet. We can configure proxy at apache-maven-*.*.*\conf\settings.xml <settings> <proxies> <proxy> <id>example-proxy</id> <active>true</active> <protocol>http</protocol> <host>proxy.example.com</host> <port>8080</port> <username>proxyuser</username> […]