sbt-assembly icon indicating copy to clipboard operation
sbt-assembly copied to clipboard

ShadeRule's libraries coordinates do not support cross version

Open kien-truong opened this issue 4 years ago • 0 comments

When I configure shading withing a library such as

ShadeRule
  .rename(...)
  .inLibrary("org" %% "artifact" % "version")
  .inProject

The library's coordinate does not expand to ModuleCoordinate("org", "artifact_<scala_version>", "version"), but remains ModuleCoordinate("org", "artifact", "version")

kien-truong avatar Jul 24 '20 10:07 kien-truong