From 52ab09bec324c77ef1134b35fb0bc6b031e32999 Mon Sep 17 00:00:00 2001 From: PJ Fanning Date: Thu, 17 Oct 2024 08:07:33 +0100 Subject: [PATCH] try to link to right protobuf-java pom (#1535) --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index d93f55ee67..f3ba8323e1 100644 --- a/build.sbt +++ b/build.sbt @@ -384,7 +384,7 @@ lazy val protobufV3 = pekkoModule("protobuf-v3") // redefining the fullClasspath with just what we need to avoid the cyclic task dependency assembly / fullClasspath := (Runtime / managedClasspath).value ++ (Compile / products).value.map(Attributed.blank), assembly / test := {}, // assembly runs tests for unknown reason which introduces another cyclic dependency to packageBin via exportedJars - description := "Apache Pekko Protobuf V3 is a shaded version of the protobuf runtime. Original POM: https://github.com/protocolbuffers/protobuf/blob/v3.9.0/java/pom.xml") + description := s"Apache Pekko Protobuf V3 is a shaded version of the protobuf runtime. Original POM: https://github.com/protocolbuffers/protobuf/blob/v${Dependencies.Protobuf.protobufJavaVersion}/java/pom.xml") lazy val pki = pekkoModule("pki")