Skip to content

Commit d93af28

Browse files
change pom name (apache#216)
* add Apache to pom name * Also fix gRPC for sbt modules --------- Co-authored-by: Matthew de Detrich <[email protected]>
1 parent b50b2f1 commit d93af28

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

build.sbt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ commands := commands.value.filterNot { command =>
3232

3333
ThisBuild / reproducibleBuildsCheckResolver := Resolver.ApacheMavenStagingRepo
3434

35+
// So that gRPC is properly styled
36+
ThisBuild / apacheSonatypeArtifactNameProcessor := apacheSonatypeArtifactNameProcessor.value.andThen {
37+
_.replaceAll("Grpc", "gRPC")
38+
}
39+
3540
val pekkoPrefix = "pekko-grpc"
3641
val pekkoGrpcRuntimeName = s"$pekkoPrefix-runtime"
3742

gradle-plugin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ gradlePlugin {
4747
publishing {
4848
publications.withType(MavenPublication) {
4949
pom {
50-
name = "Apache Pekko Grpc Gradle Plugin"
50+
name = "Apache Pekko gRPC Gradle Plugin"
5151
description = "Apache Pekko gRPC - Support for building streaming gRPC servers and clients on top of Pekko Streams."
5252
url = "https://pekko.apache.org/"
5353
licenses {

0 commit comments

Comments
 (0)