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 项目文件?


基础教程推荐
- 大摇大摆的枚举 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 多个组件的复杂布局 2022-01-01
- 从 python 访问 JVM 2022-01-01
- Java Swing计时器未清除 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01