java - Error install Maven in Eclipse -


i don't know why maven install error in eclipse, following picture: enter image description here

thank all!

look .m2 folder , file called settings.xml replace host , port own university settings.

<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>myproxy</id>       <active>true</active>       <protocol>http</protocol>       <host>enter proxy here!!!!</host>       <port>enter port here!!!!</port>       <nonproxyhosts>*.google.com|ibiblio.org</nonproxyhosts>     </proxy>   </proxies> </settings> 

Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -