how to solve proxy using maven (IN Eclipse) -
when want create new maven webapp project using eclipse
error : not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:release of configured repositories.
here part of setting.xml :
<proxy> <id>optional</id> <active>true</active> <protocol>http</protocol> <username>myusername</username> <password>mypasseword</password> <host>proxy.host.net</host> <port>80</port> <nonproxyhosts>local.net|some.host.com</nonproxyhosts> </proxy> </proxies>
Comments
Post a Comment