How to use sbt-eclipse to create Eclipse project files of a project?(如何使用 sbt-eclipse 创建项目的 Eclipse 项目文件?)
问题描述
我按照官方文档在我的sbt项目中设置插件:
I followed the official documentation to set up the plugin in my sbt project:
- 添加
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" %"2.5.0")
到~/.sbt/plugins/plugins.sbt
文件 cd
ed 到一个项目并运行sbt
- 在 sbt shell 中,输入
eclipse
- Added
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")
to~/.sbt/plugins/plugins.sbt
file cd
ed to a project and ransbt
- In sbt shell, typed
eclipse
这就是我遇到以下错误的地方:
That's where I faced the following error:
> eclipse
[error] Not a valid command: eclipse (similar: help, alias)
[error] Not a valid project ID: eclipse (similar: sbteclipse)
[error] Expected ':' (if selecting a configuration)
[error] Not a valid key: eclipse (similar: deliver, licenses, clean)
[error] eclipse
[error] ^
我错过了什么?
提前感谢您能给我的任何帮助.
Thanks in advance for any help you can give me.
$ /opt/sbt-0.13.5/bin/sbt
[warn] The global sbt directory is now versioned and is located at /Users/first.last/.sbt/0.13.
[warn] You are seeing this warning because there is global configuration in /Users/first.last/.sbt but not in /Users/first.last/.sbt/0.13.
[warn] The global sbt directory may be changed via the sbt.global.base system property.
[info] Loading project definition from /Users/first.last/git/myproject/project
[info] Set current project to myproject (in build file:/Users/first.last/git/myproject/)
> eclipse
[error] Not a valid command: eclipse (similar: help, alias)
[error] Not a valid project ID: eclipse
[error] Expected ':' (if selecting a configuration)
[error] Not a valid key: eclipse (similar: deliver, licenses, clean)
[error] eclipse
[error] ^
推荐答案
我使用的是 sbt 0.13.5.
I'm using sbt 0.13.5.
$ sbt --version
sbt launcher version 0.13.5
在 empty 目录中执行 sbt about
以检查 build/sbt 设置.
In an empty directory executed sbt about
to check the build/sbt setup.
$ sbt about
[info] Loading global plugins from /Users/jacek/.sbt/0.13/plugins
[info] Updating {file:/Users/jacek/.sbt/0.13/plugins
本文标题为:如何使用 sbt-eclipse 创建项目的 Eclipse 项目文件?


- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- 转换 ldap 日期 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 获取数字的最后一位 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01