How to not check in Eclipse specific project files?

Posted by futlib on Stack Overflow See other posts from Stack Overflow or by futlib
Published on 2010-06-12T10:39:20Z Indexed on 2010/06/12 10:42 UTC
Read the original article Hit count: 301

Filed under:
|
|
|

I don't want to force people into using a specific IDE for development, so our projects look basically like this:

  • SomeProject
    • src
    • lib
    • build.xml

No IDE specific files whatsoever.

However, many people prefer Eclipse and it is their valid complain that it is annoyingly difficult to set up an Eclipse project from an Ant build file if that project is checked into a VCS. That's a very old bug, so I don't really expect it to be fixed soon.

I don't want all those weird Eclipse project files in the project root, but if it was the only way, I would accept having the eclipse project files in a subdirectory "eclipse". I thought Eclipse's linked resources were capable of just that, but I was wrong, it doesn't really work.

How do you solve this problem? Are you checking in the .settings directory. etc. into your project's root?

© Stack Overflow or respective owner

Related posts about eclipse

Related posts about svn