安装 sbteclipse
我有问题顶使用sbteclipse
我做了什么:
- 转到我的全局 sbt 文件夹.
- 创建了一个插件文件夹
- 使用
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0")
创建了文件 plugins.sbt - 进入我的 eclipse 项目并创建了一个 build.sbt 文件
- 它包含:
名称 := "foo"
name := "foo"
version := "1.0"
scalaVersion := "2.9.2"
libraryDependencies += "net.java.dev.jna" % "jna" % "3.4.0"
- 我在我的 cmd 中选择项目文件夹.并输入
sbt eclipse
但我总是收到以下错误
[error] Not a valid command: eclipse (similar: help, alias)
[error] Not a valid project ID: eclipse
[error] Expected ':'
[error] Not a valid key: eclipse (similar: deliver, licenses, clean)
[error] eclipse
[error] ^
ps:我使用的是 Windows.我也在使用 sbt 0.12
ps: I am using Windows. I am also using sbt 0.12
推荐答案
您的全局 sbt 文件夹位于 %USERPROFILE%.sbt
(C:Users
最有可能).所以你的插件应该定义在 %USERPROFILE%.sbtpluginsplugins.sbt
Your global sbt folder is at %USERPROFILE%.sbt
(C:Users<username>.sbt
most likely). So your plugins should be defined at %USERPROFILE%.sbtpluginsplugins.sbt
如果不这样做,您可以直接将其添加到您的项目中.添加文件路径为<project_root>projectplugins.sbt
.如果 project
目录不存在,则需要创建它.
Failing this you can add it to your project directly. Add the file path is <project_root>projectplugins.sbt
. If the project
directory doesn't exist you will need to create it.
相关文章