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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use
Attributed.blank(...)to wrap the file inside an attributed instance. You should also provide the context (for instanceRuntime):