我正在尝试以下设置
unmanagedClasspath += file("/home/...")
我收到以下错误
error: type mismatch;
found : sbt.package.File
required: sbt.Attributed[java.io.File]
sbt.Attributed是什么语法?
答案 0 :(得分:4)
您可以使用Attributed.blank(...)
将文件包装在属性实例中。您还应该提供上下文(例如Runtime
):
unmanagedClasspath in Runtime += Attributed.blank( file("/home/...") )