今天在家里折腾环境的时候,看了下maven
的 setting.xml
文件中的注释,发现其中有一个配置http代理的地方。
有了配置代理的地方,那么其实就可以折腾很多事情了,这个地方不多说,懂的自然懂。
<proxies>
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username></username>
<password></password>
<host>127.0.0.1</host>
<port>1087</port>
<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
</proxies>
好了,搞定!