I need to develop applications here at the company. And inside the company's network there is a *.pac file that determine the destination according to the request. I'm using git as the version control and maven as the dependency manager, after searching on the internet I've found the following link which helped me configure git to work properly:
Getting git to work with a proxy server
Unfortunately, for Maven I couldn't find a way to make it work. I've checked the following links but none seemed to work either:
https://www.mkyong.com/maven/how-to-enable-proxy-setting-in-maven/
https://maven.apache.org/guides/mini/guide-proxies.html
Some comments were telling to configure the settings.xml file in the .m2 folder, I configured it like that:
<proxies>
<proxy>
<id>p1</id>
<active>true</active>
<protocol>http</protocol>
<host>hostname</host>
<port>3129</port>
<username>user</username>
<password>password</password>
</proxy>
<proxy>
<id>p2</id>
<active>true</active>
<protocol>https</protocol>
<host>hostname</host>
<port>3443</port>
<username>user</username>
<password>password</password>
</proxy>
</proxies>
Even so it doesn't work.
Has anyone went through this problem, does anyone know how to solve it?