bom: Do not include grpc-binder (#8038)
Binder is not yet being published, so this artifact wouldn't exist.
diff --git a/bom/build.gradle b/bom/build.gradle
index 4366851..49fcb3c 100644
--- a/bom/build.gradle
+++ b/bom/build.gradle
@@ -12,7 +12,12 @@
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')