I have java project which builds fine via:
mvn clean install -DskipTests
In my previous eclipse version (with m2e installed), when I used to import it as "mvn project", it used to work fine.
But because of some problems i re-installed my OS.
Now when I try to import it as "mvn project", it gives me following error: Issues with Eclipse setup on Ubuntu 12.04
Then I tried some more and built project as:
mvn clean install -DskipTests eclipse:eclipse
And tried importing it as mvn project. Now it imports fine, but I have some issues:
- The import still have some problem. Earlier it is showing all modules as different projects. But I wanted to import it as one project (earlier it used to get import as 1 project, which helps in navigation and putting breakpoints)
- Reason of this behavior?: Is this because of different version of two maven (command line and eclipse). If yes, how can i handle that. I anyway don't need to built project from eclipse.