Link to home
Start Free TrialLog in
Avatar of Dibakar Sinha
Dibakar Sinha

asked on

Facing this issue for maven proxy setting

No plugin found for prefix 'eclipse' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the reposit
ories [local (C:\Users\ds00461811\.m2\repository), central (https://repo.maven.apache.org/maven2)] -> [Help 1]
ASKER CERTIFIED SOLUTION
Avatar of gurpsbassi
gurpsbassi
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Dibakar Sinha
Dibakar Sinha

ASKER

I added below proxy in my maven settings.xml and started working
<proxy>      
      <active>true</active>
      <protocol>http</protocol>
      <username>{domain_name/username}</username>
      <password>windowspassword</password>    
      <host>{ip address of the proxy server}</host>
      <port>{port no}</port>  <! most of the time it is 8080-->
    </proxy>