| Author |
Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3:install
|
RameshK umar
Greenhorn
Joined: May 19, 2011
Posts: 1
|
|
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.
|
 |
rob michael
Greenhorn
Joined: May 22, 2011
Posts: 27
|
|
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.
|
Have a look at my blog: http://automateddeveloper.blogspot.com/
Or even my Android Apps (website): http://www.mobile.thirdmindmedia.co.uk
|
 |
 |
|
|
subject: Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3:install
|
|
|