Skip to content

Commit

Permalink
Revert "bom: Remove protoc-gen-grpc-java"
Browse files Browse the repository at this point in the history
This reverts commit 4a84c6f. The BOM
was usable for protoc-gen-grpc-java using dependencyManagement for the
buildscript. See conversation on #9020.
  • Loading branch information
ejona86 committed May 9, 2022
1 parent a8bd0b8 commit af56f1f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions bom/build.gradle
Expand Up @@ -34,6 +34,12 @@ publishing {
dependencyNode.appendNode('artifactId', subproject.name)
dependencyNode.appendNode('version', subproject.version)
}
// add protoc gen (produced by grpc-compiler with different artifact name)
def dependencyNode = dependencies.appendNode('dependency')
dependencyNode.appendNode('groupId', project.group)
dependencyNode.appendNode('artifactId', 'protoc-gen-grpc-java')
dependencyNode.appendNode('version', project.version)
dependencyNode.appendNode('type', 'pom')
}
}
}
Expand Down

0 comments on commit af56f1f

Please sign in to comment.