• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3:install

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
HI

I was tried to run maven-install from my eclipse plugin for one of the chekout project. When i run maven-install i am getting this error :



Can anyone have the idea about this error ? please provide the solution.
 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The problem is you dont have org.codehaus.plexus:plexus-utils:jar in your local repository and maven is unable to download it.

Here are some pointers to how to resolve this:

1. Check the maven central repository online to see if this JAR is part of the core library.
- If it is, and your local maven cannot download it then it may be something to do with your web connection, and you may need to setup a proxy in your settings.xml
- If it isn't, google it to see if it is in another repository - if it is in another repository, then you will need to configure your project POM with the new repo details
- If it isn't in any maven repository, then you will need to download the JAR manually and explicitly install it in to your repo using the following command:





In this instance, having checked http://mvnrepository.com/artifact/org.codehaus.plexus/plexus-utils/1.1 you can see that it is in the maven repository, which suggests your local setup is having some problem downloading the JAR - so check your proxy settings.
 
reply
    Bookmark Topic Watch Topic
  • New Topic