Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 Mercurial 设置了我的 Eclipse 项目,这样我就可以和一些朋友一起编码。我有一点问题,Eclipse 将不再构建我的项目!构建菜单中的构建项目选项显示为灰色。我该怎么办?
好吧,所以我找到了答案,.project 文件需要一些鬼鬼祟祟的东西。将项目更改为 Java 项目后,我需要添加 Java 构建器。将这些行添加到您的 .project 文件以解决问题:
<buildSpec> <buildCommand> <name>org.eclipse.jdt.core.javabuilder</name> <arguments> </arguments> </buildCommand> </buildSpec>