为什么 SBT 给我一个类型不匹配错误?

发布于 2024-12-05 09:54:04 字数 246 浏览 0 评论 0原文

我正在尝试以下设置

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风流物 2024-12-12 09:54:04

您可以使用 Attributed.blank(...) 将文件包装在属性实例中。您还应该提供上下文(例如运行时):

unmanagedClasspath in Runtime += Attributed.blank( file("/home/...") )

You can use Attributed.blank(...) to wrap the file inside an attributed instance. You should also provide the context (for instance Runtime):

unmanagedClasspath in Runtime += Attributed.blank( file("/home/...") )
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文