Skip to content

Commit

Permalink
restore changes
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeddada1 committed Sep 19, 2023
1 parent 877c0b9 commit 8f98f14
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ private static String calculateDependenciesSection(Bom bom) {
// 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())) {
if ("grpc-android".equals(managedDependency.getArtifactId())
|| "grpc-binder".equals(managedDependency.getArtifactId())
|| "grpc-cronet".equals(managedDependency.getArtifactId())) {
continue;
}

Expand Down

0 comments on commit 8f98f14

Please sign in to comment.