存储库中应包含哪些 Eclipse 元数据文件?

发布于 2024-08-23 04:26:45 字数 188 浏览 1 评论 0原文

我正在开发一个具有完整 ANT 构建的新项目。我使用 Eclipse 来编写代码,我希望其他人能够检查该项目以拥有完整的工作 Eclipse 工作区。但我不想提交特定的用户设置。

我应该在源代码管理中包含哪些文件和目录?

(我不想只是去获取一个插件 - 我更喜欢对存储库中的内容进行更多控制)

I'm working on a new project with a full ANT build. I use eclipse to write my code, and I would like others to be able to check out the project to have a full working eclipse workspace. I do not want to have specific user settings committed though.

What files and directories should I have in source control?

(I'd rather not just go grab a plugin - I prefer more control over what goes in the repository)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

筑梦 2024-08-30 04:26:45

我们只需将 .project.classpath 放入我们的存储库中,这足以使其对新开发人员来说“开箱即用”。我想要其他东西(想到运行配置),但还没有弄清楚如何。

我们使用 Subversion,因此我将这些文件放在一个单独的目录中,并在该目录上定义 svn:externals 来指向实际代码,使其不受 IDE 特定文件的污染。

根据评论中的请求,以下是我们使用的外部。这里没有什么复杂的事情发生:

Properties on 'svn://dev/trunk/IDEs/eclipse/runtime':
  svn:ignore
    bin
    .fbprefs
    cobertura.ser
    .settings

  svn:externals
    lib/bin svn://dev/trunk/lib/bin
    runtime svn://dev/trunk/runtime

We just put .project and .classpath in our repository, and that's sufficient to make it work "out of the box" for new developers. I'd like to have other stuff (run configurations come to mind), but haven't figured out how.

We use Subversion, so I put these files in a separate directory and defined svn:externals on that directory to point to the actual code, leaving it unpolluted by IDE-specific files.

Per request in the comments, here are the external that we use. Nothing complicated going on here:

Properties on 'svn://dev/trunk/IDEs/eclipse/runtime':
  svn:ignore
    bin
    .fbprefs
    cobertura.ser
    .settings

  svn:externals
    lib/bin svn://dev/trunk/lib/bin
    runtime svn://dev/trunk/runtime
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文