I have a bit of a problem with Eclipse and Maven for a few months. After changing the pom.xml, Eclipse is losing all artifacts and getting this exception in my Maven console:

Missing artifact commons-logging:commons-logging:jar:1.1:compile

Eclipse doesn't find any artifacts. My workaround is to close Eclipse, run mvn clean install on the command line and start Eclipse. This workaround works without any problems, but is not really the right way. How can I fix this issue?

I'm running Eclipse 3.7 and the newest m2eclipse(-extra), Windows 7 64bit with JDK 1.6.0.24.

link|improve this question

43% accept rate
I was figthing a lot with Maven and Eclipse and finally found SpringRoo which helps a lot with maven issues. STS has all necessary plugins and Roo embedded. I dont know what is the nature of your project but you may consider it. Sometimes deleting local maven cache and downloading all dependencies again solves an issue. – Random Jul 19 '11 at 7:23
Go to the user list for m2eclipse for support on m2eclipse. – bmargulies Oct 18 '11 at 21:04
feedback

2 Answers

I assume it builds ok when Maven is explicitly run - yes?
Have you tried right-clicking on the project and selecting

Maven..Update Project Configuration 

and

Maven..Update Dependencies?  

If not, that's likely to solve your problem.

link|improve this answer
At the moment i have the problem, that one project lose all dependencies. I tried mvn clean (from eclipse), Update Project Configuration and also Update Dependencies, nothing helps :/ All artefacts are in my local repository. – moohkooh Jul 21 '11 at 6:31
feedback

Are you also running

mvn eclipse:eclipse

I had a similar issue and I ran that, the refreshed the project in eclipse and everything worked fine.

link|improve this answer
Yes, i try this now, but the same problem :/ – moohkooh Jul 21 '11 at 6:33
feedback

Your Answer

 
or
required, but never shown

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