7

I am having a Missing Maven dependencies in Eclipse project exactly as described in this question, and I would love to use the solution found, but when I right-click my project in Project Explorer I can't find any such menu item:

enter image description here

If I right-click the project's pom.xml, all I see in the Maven's menu is:

enter image description here

Any idea what I should be doing to enable that Update project configuration menu option?

Community
  • 1
  • 1
Withheld
  • 4,603
  • 10
  • 45
  • 76

2 Answers2

22

Righ click on the project: >Configure>Convert to Maven project

And then you can Update project configuration

Pieter
  • 414
  • 3
  • 6
  • Bingo! Once I did that, the scary empty `org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER` turned into a nice & full `Maven Dependencies`. I didn't even have to go through `Maven > Update Project...` to accomplish that. Thank you so much! – Withheld Dec 05 '12 at 15:54
-2

try "Team" - "Commit" in Eclipse and then in a shell:

mvn dependecy:resolve
Marc S.
  • 35
  • 7