将 Scala 项目从 github 导入到 Eclipse 中
我已经在我的 Eclipse Helios 中安装了 EGit 插件以及最新的 Scala IDE 插件测试版。我已使用克隆将其导入为“常规项目”,但找不到任何配置 ->添加 Scala 自然选项...我做错了什么? (无法编译/运行/添加库等)
I've installed EGit plugin in my Eclipse Helios with latest Scala IDE plugin beta. I've imported it as a "general project" using clone and I can't find any Configure -> Add Scala nature option ... what am I doing wrong? (can't compile/run/add libraries etc)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不熟悉 EGit 插件,但您是否也可以选择将其导入为 Java 项目? “添加 Scala Nature”选项仅适用于 Java 项目。
如果您无法将其创建为 Java 项目,您也可以只修改生成的 .project 文件并手动向其中添加 Java 性质:(
取自 http://enarion.net/programming/eclipse-change-general-to-java-project/)
I'm not familiar with the EGit Plug-in, but do you also have the option to import it as a Java project? The "Add Scala Nature" option is only available for Java projects.
If you can't create it as a Java project, you can also just modify the generated .project file and add the Java nature to it manually:
(taken from http://enarion.net/programming/eclipse-change-general-to-java-project/)
一种推荐的方法是首先使用 sbt< 编译/运行 GitHub 项目/a> (这确保了 IDE 独立性和第三方库依赖管理)。
sbt-ecrifsify 可以轻松生成
.classpath
和.project< /code> sbt 项目中 Eclipse IDE 的文件。
类
ProjectFile。 scala
详细说明了.project
文件是如何构建的。One recommended approach would be first to make your GitHub project compiled/run with sbt (which ensures both IDE-independence and third-party library dependency management).
The sbt-eclifsify can easily generates
.classpath
and.project
files for the Eclipse IDE from the sbt project.The class
ProjectFile.scala
details how the.project
file is build.