In my Java project, which has a maven ‘nature’, m2e version 1.0.10020110804 does NOT detect any jars located in my local repo. I can successfully compile/install using maven from the command line, but when I open the project in Eclipse I’m notified of 100+ (cannot be resolved to a type) errors. Does anyone know how to resolve this problem? I’ve tried updating dependencies and cleaning my project, but neither works. My local repo is set in m2e under ‘User Settings’.
In my Java project, which has a maven ‘nature’, m2e version 1.0.10020110804 does NOT
Share
I recently faced the same problem. The root cause was that I imported my project as a generic project and later added maven and java natures to it. I resolved the issue by closing and removing the project from my workspace and re-importing as a maven project and then syncing it with my local repo. HTH.