我正在使用Maven 3.3.9。我在Maven中使用代理访问依赖项。
<proxies>
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username>name@organization.com</username>
<password>password</password>
<host>appropriatehostname</host>
<port>8080</port>
<nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
</proxies>
直到昨天这个工作还很顺利。之后它就停止了工作。我既没有改变任何设置也没有更改密码。什么都没有。
现在,我已经开始使用解决方法,我只是使用用户名并删除了@organization.com
。现在只有username
,它正在运作。但我的问题是发生了什么
之前的设置失败
没有任何理由。
我的组织中的其他人都可以与他们的name@organization.com
以及name
建立联系。但看起来,它对我来说根本不起作用。