When executing Maven’s install command in MyEclipse or adding new dependencies to pom.xml in Maven project, it reports “Failed to read artifact descriptor for xxx:jar” or ” missing artifact maven dependency” error. This may be due to a file error during the download process.
Solution: Remove the relevant jar package from the local maven library, then right-click the project, Maven4MyEclipse->Update Project, in the pop-up dialog box, select “Force Update Of Snapshots/Releases”.
Then click “OK”. This will re-download the jar package.
Different Eclipse versions of the project right-click Maven only will have different submenus:
Mine is shown below:
Then click “OK” and you’re done ……..
//=================================================
There are also several other ways provided …. (personal attempts did not work)
There are a few other options apart from Project->Clean, some of which are more along the lines of turning it off and on again.
Try right-clicking on the project and selecting Maven->Update Project Configuration.
Disable then re-enable dependency management (right-click Maven->Disable Dependency Management then Maven->Enable Dependency Management
Close the project and reopen it.
Check that your Maven settings are configured correctly. If you are behind a proxy you’ll need toconfigure the proxy settings in the global or user settings.
Check you’re using the Maven installation you expect. By default m2eclipse uses the embedder, if you have a separate installation you may want to configure m2eclipse to use the external installation so that CLI and Eclipse builds are consistent. This also ensures you’re configured to connect through any proxy as above.
Source:
http://stackoverflow.com/questions/6111408/maven2-missing-artifact-but-jars-are-in-place
http://stackoverflow.com/questions/6642146/maven-failed-to-read-artifact-descriptor
Similar Posts:
- Pom.xml error: org.codehaus.plexus.archiver.jar.Manifest.write(java.io.PrintWriter) solution
- Maven:ArtifactdescriptorException: failed to read artifact for xxxxxx
- New Maven project — pom.xml error [How to Solve]
- [Solved] Idea maven Pom Error: “Failed to read artifact descriptor”
- [Solved] Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from/to central
- [Solved] maven 3.5.0 combined with eclipse suggests solutions to lambda expressions are allowed only at source level 1.8 or above errors
- Maven Error: Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:3.0.0-M1 [How to Solve]
- [Solved] Jsonobject has no from object, idea has no Maven dependency, jsonobject Maven dependency package
- Using Maven helper to resolve Maven plug-in conflicts
- Maven: idea cannot download the source code Issue [How to Solve]