Appreciate the earlier post on the settings.xml file as the place to address proxy issues when importing Maven projects. But I still got stuck. I've sent some e-mail around internally trying to get some GH eyeballs on the issue, but thought I'd hit up this list, too, to see if anybody else can figure out why I'm getting a proxy authentication error when I try to import the Maven projects into my workspace.
Here's my settings.xml file. <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>ghc_proxy</id> <active>true</active> <protocol>http</protocol> <host>proxyserver.ghc.org</host> <port>8080</port> <username>domain\\halgsr1</username> <password>REDACTED</password> <nonProxyHosts>localhost|127.0.0.1</nonProxyHosts> </proxy> </proxies> </settings> I have also tried these replacements for the host-password lines *** <host>anotherserver.ghc.org/proxy.pac</host> <port>80</port> *** <host>proxyserver.ghc.org</host> <port>8080</port> <username>halgsr1</username> <password>REDACTED</password> *** <host>proxyserver.ghc.org</host> <port>8080</port> <username>domain\halgsr1</username> <password>REDACTED</password> *** Thanks, Scott ________________________________ GHC Confidentiality Statement This message and any attached files might contain confidential information protected by federal and state law. The information is intended only for the use of the individual(s) or entities originally named as addressees. The improper disclosure of such information may be subject to civil or criminal penalties. If this message reached you in error, please contact the sender and destroy this message. Disclosing, copying, forwarding, or distributing the information by unauthorized individuals or entities is strictly prohibited by law.
