Skip to content

Commit

Permalink
build: filter out 2.12_1.0 artifacs to fix publishing of sbt-akka-grpc (
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-alfers authored Mar 11, 2024
1 parent 250ba08 commit 1377c80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ lazy val sbtPlugin = Project(id = "sbt-akka-grpc", base = file("sbt-plugin"))
scalaVersion := Dependencies.Versions.CrossScalaForPlugin.head,
publishSignedConfiguration := publishSignedConfiguration.value.withArtifacts(
// avoid publishing the plugin jar twice
publishSignedConfiguration.value.artifacts.filter(_._1.name.contains("2.12_1.0"))))
publishSignedConfiguration.value.artifacts.filter(!_._1.name.contains("2.12_1.0"))))
.dependsOn(codegen)

lazy val interopTests = Project(id = "akka-grpc-interop-tests", base = file("interop-tests"))
Expand Down

0 comments on commit 1377c80

Please sign in to comment.