If our group uses Maven, will it promote IDE independence?
NetBeans generates a lot of project files that Eclipse doesn’t use – if a developer creates something with NetBeans and Maven, can this project be directly ported to Eclipse using Maven?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’ve your pom.xml you can generate an Eclipse project with
mvn eclipse:eclipse
In general with Eclipse, I avoid committing any eclipse-specific artifacts to the source code repository, they are in my ignore file (in my case with Git, in .gitignore).
UPDATE: As for the comment regarding m2eclipse, then you can you can install m2eclipse plugin with Help -> Eclipse Marketplace. After installing it you can import the project from Eclipse with File > Import… > Maven > Existing Maven Projects.