Skip to content

Commit

Permalink
try assembly fix - take 2
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Aug 11, 2024
1 parent 964a0fe commit 465111b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ lazy val runtime = Project(id = "runtime", base = file("runtime"))
ReflectiveCodeGen.generatedLanguages := Seq("Scala"),
ReflectiveCodeGen.extraGenerators := Seq("ScalaMarshallersCodeGenerator"),
PB.protocVersion := Dependencies.Versions.googleProtoc,
assemblyMergeStrategy in assembly := {
case PathList("META-INF", "versions", "9", "module-info.class") => MergeStrategy.discard
assembly / assemblyMergeStrategy := {
case PathList("META-INF", "versions", _*) => MergeStrategy.discard
case _ => MergeStrategy.first
})
.enablePlugins(org.apache.pekko.grpc.build.ReflectiveCodeGen)
Expand Down

0 comments on commit 465111b

Please sign in to comment.