带插件的最小完整 SBT 项目
因此,当我尝试创建一个具有任何类型配置的项目时,sbt (0.10) 会产生最奇怪的错误,甚至复制 wiki 示例都不起作用……
是否有一个很好的最小的、有效的 sbt 项目集合? (不是基本/快速的.sbt
内容,而是project/
中的完整.scala
文件)维基片段似乎已经过时或错误…
我尝试集成 scalariform 失败,SBT 无法编译 import sbt._
在 project/plugins/Plugins.scala
中?! (树中没有任何其他自定义文件。据我所知,这应该有效......)
基本上我需要一个带有 scalariform
和 -deprecated
编译器选项的项目(甚至在快速模式下都不起作用......)
So sbt (0.10) produces the weirdest errors when I try to create a project that has any kind of configuration, not even copying the wiki examples works…
Is there a nice collection of minimal, working sbt projects? (not the basic/quick .sbt
stuff but the full .scala
files in project/
) The wiki snippets seem to be outdated or wrong somehow…
My attempt at integrating scalariform failed with SBT not being able to compile import sbt._
in project/plugins/Plugins.scala
?! (without any other custom files in the tree. That should have worked as far as I understand it…)
Basically I need a project with scalariform
and the -deprecated
compiler option (that didn't even work in quick mode…)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 sbt 0.10.x (xsbt),则需要稍等一下。目前该插件不兼容:
https://github.com/harrah/ xsbt/wiki/sbt-0.10-plugins-list
如果您使用 sbt 0.7.x,请参阅
sbt-scalariform
上的说明github 页面应该可以工作。If you use sbt 0.10.x (xsbt), you'll have to wait a bit. Currently the plugin is not compatible:
https://github.com/harrah/xsbt/wiki/sbt-0.10-plugins-list
If you use sbt 0.7.x, the instructions on the
sbt-scalariform
github page should work.