0

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.

error

Could anyone help me to solve this issue?

Marco Bonelli
  • 63,369
  • 21
  • 118
  • 128
abdul khan
  • 843
  • 2
  • 7
  • 24
  • 3
    You'd better paste the error message in plaintext instead of posting an image. This gives searchbots the opportunity to index questions&answers concerning the exact error message. Users namely usually use a search engine like Google to find the answer when using the error message as search query (oh, while we're at it.. have you tried it yourself too?) – BalusC Apr 17 '15 at 15:03

2 Answers2

0

I found same error and resolved using this question of StackOverflow

solution-1 (please follow this link for further assistance)

By following below steps

Community
  • 1
  • 1
0

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>
Stéphane GRILLON
  • 11,140
  • 10
  • 85
  • 154