为什么 SBT 给我一个类型不匹配错误?
我正在尝试以下设置
unmanagedClasspath += file("/home/...")
并收到以下错误
error: type mismatch;
found : sbt.package.File
required: sbt.Attributed[java.io.File]
sbt.Attributed 的语法是什么?
I'm trying the following setting
unmanagedClasspath += file("/home/...")
And am getting the following error
error: type mismatch;
found : sbt.package.File
required: sbt.Attributed[java.io.File]
What is the syntax for sbt.Attributed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Attributed.blank(...) 将文件包装在属性实例中。您还应该提供上下文(例如
运行时
):You can use
Attributed.blank(...)
to wrap the file inside an attributed instance. You should also provide the context (for instanceRuntime
):