I Created a Maven project following this tutorial, and it worked properly. Now when I create a Maven project again, it gives the following error.
Could anyone help me to solve this issue?
I Created a Maven project following this tutorial, and it worked properly. Now when I create a Maven project again, it gives the following error.
Could anyone help me to solve this issue?
I found same error and resolved using this question of StackOverflow
solution-1 (please follow this link for further assistance)
By following below steps
Maven > User Setting > c:\Users\xxxxxxxx.m2\settings.xml
If you are a proxy, you need this configuration:
<proxies>
<!-- proxy
| Specification for one proxy, to be used in connecting to the network.
| -->
<proxy>
<id>optional</id>
<active>true</active>
<protocol>http</protocol>
<username>******</username>
<password>*******</password>
<host>*****proxy_host*****</host>
<port>8080</port>
</proxy>
</proxies>