Which of the above IDEs have better support for maven. I tried setting up a large project in Eclipse but came across this and several other errors. Wondering if IntelliJIdea is better.
Asked
Active
Viewed 203 times
0
-
IntelliJ has better Maven support. – Dave Newton Mar 18 '12 at 14:55
-
Note that maven provide abilities to isolate source from IDE, use either [mvn eclipse:eclipse](http://maven.apache.org/plugins/maven-eclipse-plugin/eclipse-mojo.html) or [mvn idea:idea](http://maven.apache.org/plugins/maven-idea-plugin/idea-mojo.html) to generate IDE config files and import your project as a classic java project. – yorkw Mar 18 '12 at 20:32
-
Don't use mvn eclipse:eclipse anymore, cause m2e for Eclipse is better. It shouldn't necessary to generate the IDE configuration files, cause if you simply import the project with Eclipse (Indigo with m2e) it works out of the box. – khmarbaise Mar 19 '12 at 08:33