diff --git a/tests/validate-bom/src/main/java/com/google/cloud/CreateBomCanaryProject.java b/tests/validate-bom/src/main/java/com/google/cloud/CreateBomCanaryProject.java index 602ef896ed6d..d81a34d1f870 100644 --- a/tests/validate-bom/src/main/java/com/google/cloud/CreateBomCanaryProject.java +++ b/tests/validate-bom/src/main/java/com/google/cloud/CreateBomCanaryProject.java @@ -111,14 +111,11 @@ private static String calculateDependenciesSection(Bom bom) { continue; } - // Skipping grpc-android, grpc-binder and grpc-cronet as they are not used by Google Cloud Client - // Libraries for Java. Checking for availability of these unused artifacts on Maven Central has - // caused BOM validation check to fail in the past. - // See + // Skipping grpc-android, grpc-binder and grpc-cronet as they are not used by Google Cloud + // Client Libraries for Java. Checking for availability of these unused artifacts on Maven + // Central has caused BOM validation check to fail in the past. See // https://github.com/googleapis/sdk-platform-java/pull/1989#issuecomment-1724039670 - if ("grpc-android".equals(managedDependency.getArtifactId()) - || "grpc-binder".equals(managedDependency.getArtifactId()) - || "grpc-cronet".equals(managedDependency.getArtifactId())) { + if ("grpc-android".equals(managedDependency.getArtifactId())) { continue; }