Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Aug 11, 2024
1 parent 4867c5b commit 1908598
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ lazy val codegen = Project(id = "codegen", base = file("codegen"))
(assembly / mainClass) := Some("org.apache.pekko.grpc.gen.Main"),
(assembly / assemblyOption) := (assembly / assemblyOption).value.withPrependShellScript(
Some(sbtassembly.AssemblyPlugin.defaultUniversalScript(shebang = true))),
(assembly / assemblyMergeStrategy) := {
case PathList("META-INF", "versions", _*) => MergeStrategy.discard
case _ => MergeStrategy.first
},
crossScalaVersions := Dependencies.Versions.CrossScalaForPlugin,
scalaVersion := scala212,
Compile / unmanagedSourceDirectories ++= {
Expand Down Expand Up @@ -101,11 +105,7 @@ lazy val runtime = Project(id = "runtime", base = file("runtime"))
AutomaticModuleName.settings("pekko.grpc.runtime"),
ReflectiveCodeGen.generatedLanguages := Seq("Scala"),
ReflectiveCodeGen.extraGenerators := Seq("ScalaMarshallersCodeGenerator"),
PB.protocVersion := Dependencies.Versions.googleProtoc,
assembly / assemblyMergeStrategy := {
case PathList("META-INF", "versions", _*) => MergeStrategy.discard
case _ => MergeStrategy.first
})
PB.protocVersion := Dependencies.Versions.googleProtoc)
.enablePlugins(org.apache.pekko.grpc.build.ReflectiveCodeGen)
.enablePlugins(ReproducibleBuildsPlugin)

Expand Down

0 comments on commit 1908598

Please sign in to comment.