From 5e9a7b6e2f4e5ae2789fb7efc597c6a80c8beabd Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Fri, 2 Apr 2021 13:03:08 -0700 Subject: [PATCH] bom: Do not include grpc-binder (#8038) Binder is not yet being published, so this artifact wouldn't exist. --- bom/build.gradle | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bom/build.gradle b/bom/build.gradle index 43668511e3b..49fcb3cbd90 100644 --- a/bom/build.gradle +++ b/bom/build.gradle @@ -12,7 +12,12 @@ publishing { pom.withXml { // Generate bom using subprojects - def internalProjects = [project.name, 'grpc-gae-interop-testing-jdk8', 'grpc-compiler'] + def internalProjects = [ + project.name, + 'grpc-binder', + 'grpc-compiler', + 'grpc-gae-interop-testing-jdk8', + ] def dependencyManagement = asNode().appendNode('dependencyManagement') def dependencies = dependencyManagement.appendNode('dependencies')