mdedetrich commented on PR #216:
URL:
https://github.com/apache/incubator-pekko-grpc/pull/216#issuecomment-1908164307
> I understand that we don't want to complicate the sbt plugin to cover the
case issue but there is no absolute requirement that this gradle-plugin pom
needs to match the other poms.
You can easily add it in this project, just do
```scala
ThisBuild / apacheSonatypeArtifactNameProcessor := { artifactId =>
val prettified = artifactId
.replaceAll("-", " ")
.replaceAll("_", " ")
.split(" ")
.map(_.capitalize)
.replaceAll("Grpc","gRPC")
.mkString(" ")
if (prettified.startsWith("Apache ")) prettified else s"Apache $prettified"
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]