Reputation: 4693
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:
If I right-click the project's pom.xml
, all I see in the Maven's menu is:
Any idea what I should be doing to enable that Update project configuration
menu option?
Upvotes: 9
Views: 22262
Reputation: 424
Righ click on the project: >Configure>Convert to Maven project
And then you can Update project configuration
Upvotes: 23
Reputation: 35
try "Team" - "Commit" in Eclipse and then in a shell:
mvn dependecy:resolve
Upvotes: -2