Skip to content

Commit

Permalink
change pom name (#216)
Browse files Browse the repository at this point in the history
* add Apache to pom name

* Also fix gRPC for sbt modules

---------

Co-authored-by: Matthew de Detrich <matthew.dedetrich@aiven.io>
  • Loading branch information
pjfanning and mdedetrich authored Jan 25, 2024
1 parent b50b2f1 commit d93af28
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ commands := commands.value.filterNot { command =>

ThisBuild / reproducibleBuildsCheckResolver := Resolver.ApacheMavenStagingRepo

// So that gRPC is properly styled
ThisBuild / apacheSonatypeArtifactNameProcessor := apacheSonatypeArtifactNameProcessor.value.andThen {
_.replaceAll("Grpc", "gRPC")
}

val pekkoPrefix = "pekko-grpc"
val pekkoGrpcRuntimeName = s"$pekkoPrefix-runtime"

Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ gradlePlugin {
publishing {
publications.withType(MavenPublication) {
pom {
name = "Apache Pekko Grpc Gradle Plugin"
name = "Apache Pekko gRPC Gradle Plugin"
description = "Apache Pekko gRPC - Support for building streaming gRPC servers and clients on top of Pekko Streams."
url = "https://pekko.apache.org/"
licenses {
Expand Down

0 comments on commit d93af28

Please sign in to comment.