I have configured all the dependencies in my pom.xml through maven. when i give the command 'mvn install' I get the following error:

[INFO] Internal error in the plugin manager executing goal 'org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test': Unable to load the mojo 'org.apache.maven.plugins:maven-surefire-plugin:2.4.3:test' in the plugin 'org.apache.maven.plugins:maven-surefire-plugin'. A required class is missing: org/apache/maven/surefire/util/NestedCheckedException org.apache.maven.surefire.util.NestedCheckedException

How can i resolve this problem? Please help

link|improve this question
1  
Would you please past the pom here to be able to follow the explanation otherwise we could only take a look into our glass bulb... – khmarbaise Mar 23 '11 at 8:20
feedback

1 Answer

You appear to be experiencing this issue: SUREFIRE-85.

The most likely cause appears to be corrupt jar files in your local repository. Try clearing out your local repository (remove everything from <your-home-directory>/.m2/repository/) and re-running the build.

Also, make sure you're using a stable, up-to-date version of Maven (e.g. v2.2.1).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.