在Eclipse PDT中,如何将Subclipse项目包含到另一个项目中?
在 Eclipse PDT 中,我有几个项目已经使用 Subclipse 进行了检查。我希望一个项目使用另一个项目,所以我转到“项目属性 > PHP 包含路径 > 项目 > 添加”,但这个地方没有项目。 当我直接在Eclipse中创建一个新项目(即没有Subclipse)时,我可以在上面提到的地方找到它。
那么,如何在 Subclipse 项目之间创建依赖关系?
谢谢。
In Eclipse PDT, I have several projects which have been checked out with Subclipse. And I want a project to use another one, so I go to "Project Properties > PHP Include Path > Projects > Add" but there are no projects at this place.
When I create a new project directly in Eclipse (ie without Subclipse), I can find it in the place I mentioned above.
So, how can I create dependencies between Subclipse projects ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,您没有将 Eclipse 项目元数据放入 SVN 中。如果不这样做,当您从 SVN 拉取项目时,它将无法启用 PHP 开发或其他任何功能。它只是一个普通的容器。
确保对所有以“.”开头的文件进行源代码控制在项目根目录中,例如 .classpath 和 .project 以及 .settings 文件夹的全部内容。
It sounds to me that you are not placing Eclipse project metadata into SVN. If you don't, when you go to pull a project from SVN, it will not be enabled for PHP development or anything else. It will be just a plain container.
Make sure to source control all files starting with '.' in project root such as .classpath and .project along with entire contents of the .settings folder.