我想通过代理使用maven我读了许多答案,说要在.m2文件夹的settings.xml文件中编写一些配置,但这不起作用这是我的配置: 我的域名是:cgi.net.intra 和 我的计算机是LDAP的成员
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<proxies>
<proxy>
<active>true</active>
<protocol>http</protocol>
<host>ncproxy3</host>
<port>8080</port>
<username>gh40615</username>
<password>mypasseword</password>
<nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
</proxy>
</proxies>
</settings>
有人能帮帮我吗? Merci d'avance
答案 0 :(得分:2)