We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It should be set correctly with jacocoExcludes like below: jacocoExcludes := jacocoExcludes(Seq("com.bpshare.Application"))
jacocoExcludes := jacocoExcludes(Seq("com.bpshare.Application"))
Instead it shows error: Type mismatch Refer to the attachment screenshot for details.
In build.sbt file, try to exclude main Scala file with jacocoExcludes := jacocoExcludes(Seq("com.bpshare.Application")),
but it shows error: Type mismatch. Refer to the attachment screenshot for details.
The text was updated successfully, but these errors were encountered:
Hello @muncleben, while I am just a user, I might have a solution for you.
jacocoExcludes := Seq("com.bsphare.Application")
No need to wrap it in the second jacocoExcludes.
jacocoExcludes
Sorry, something went wrong.
also make sure it's inside the settings sequence block, depending on your project structure.
settings
No branches or pull requests
Expected vs Actual Behaviour
It should be set correctly with jacocoExcludes like below:
jacocoExcludes := jacocoExcludes(Seq("com.bpshare.Application"))
Instead it shows error: Type mismatch
Refer to the attachment screenshot for details.
Steps to Reproduce
In build.sbt file, try to exclude main Scala file with
jacocoExcludes := jacocoExcludes(Seq("com.bpshare.Application"))
,but it shows error: Type mismatch. Refer to the attachment screenshot for details.
Environment
The text was updated successfully, but these errors were encountered: