Installing sbteclipse(安装 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.
这篇关于安装 sbteclipse的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:安装 sbteclipse
基础教程推荐
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01