-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
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
Update coursier to 2.0.9 #1446
Update coursier to 2.0.9 #1446
Conversation
c84ca7a
to
5270783
Compare
5270783
to
27d49ba
Compare
@@ -506,7 +507,7 @@ def shadeSbtSettingsForModule( | |||
}.value | |||
}, | |||
shadeOwnNamespaces := Set("bloop"), | |||
shadeIgnoredNamespaces := Set("com.google.gson"), | |||
shadeIgnoredNamespaces := Set("com.google.gson", "scala"), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is scala
added here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Due to the collection-compat
library that is brought in by coursier. It should be binary compatible and has a nice Mima job, so we should be fine, so we cna ignore it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, but collection-compat
is not the only artifact that use the scala
namespace. What about the scala library?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So that did not pop up as being a problem and it should also be binary compatible for any major version.
Besides, we are already doing it for example here: https://github.com/scalacenter/bloop/blob/master/build.sbt#L394
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
No description provided.