我在自動生成的代理后面。我已經將settings.xml配置為使用此代理,但仍然無法正常工作。Android SDK可與我設置的相同代理正常工作。<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> <id>optional</id> <active>true</active> <protocol>http</protocol> <username></username> <password></password> <host>MY-PROXY-HOST-HERE</host> <port>8080</port> <nonProxyHosts></nonProxyHosts> </proxy> </proxies></settings>我還能做些什么使Maven正常工作?錯誤:WARNING: NTLM authentication error: Credentials cannot be used for NTLM authentication: org.apache.maven.wagon.providers.http.httpclient.auth.UsernamePasswordCredentials如何獲得我的NTLM身份驗證憑據?Original error: Could not transfer metadata org.codehaus.mojo/maven-metadata.xml from/to central (http://repo.maven.apache.org/maven2): Not authorized by proxy , ReasonPhrase:Proxy Authorization Required.這是輸出消息。在我的wpad.dat(我從中獲取代理數據的位置)中,沒有指定的用戶名和密碼...
添加回答
舉報
0/150
提交
取消