Update sbt-assembly to 0.15.0 (#29301)
* Update sbt-assembly to 0.15.0 * Fix shading Co-authored-by: Arnout Engelen <arnout@bzzt.net>
This commit is contained in:
parent
6130b33e08
commit
37b1e6f118
2 changed files with 4 additions and 2 deletions
|
|
@ -313,7 +313,9 @@ lazy val protobufV3 = akkaModule("akka-protobuf-v3")
|
|||
assemblyShadeRules in assembly := Seq(
|
||||
ShadeRule
|
||||
.rename("com.google.protobuf.**" -> "akka.protobufv3.internal.@1")
|
||||
.inLibrary(Dependencies.Compile.Provided.protobufRuntime)),
|
||||
// https://github.com/sbt/sbt-assembly/issues/400
|
||||
.inLibrary(Dependencies.Compile.Provided.protobufRuntime)
|
||||
.inProject),
|
||||
assemblyOption in assembly := (assemblyOption in assembly).value.copy(includeScala = false, includeBin = false),
|
||||
autoScalaLibrary := false, // do not include scala dependency in pom
|
||||
exportJars := true, // in dependent projects, use assembled and shaded jar
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
libraryDependencies += Defaults.sbtPluginExtra(
|
||||
"com.eed3si9n" % "sbt-assembly" % "0.14.10",
|
||||
"com.eed3si9n" % "sbt-assembly" % "0.15.0",
|
||||
(sbtBinaryVersion in pluginCrossBuild).value,
|
||||
(scalaBinaryVersion in pluginCrossBuild).value)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue