Hi, > I saw the mailing lists and found its the problem with the proxy. I tried > making necessary changes in the settings.xml. But no use. It doesnt seems > to > read the settings.xml file at all. Can anybody shed some light? > or Can anybody send a sample proxy config (<proxy> </proxy> alone).
Add the following snippet to your settings.xml: <settings xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"> <proxies> <proxy> <host>(your proxy host)</host> <port>(your proxy port)</port> <username>username if necessary</username> <password>password if necessary</password> </proxy> </proxies> </settings> See also http://maven.apache.org/guides/mini/guide-proxies.html HTH Thorsten --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
