Skip to content

Commit 50f3dfb

Browse files
fix: exclude google-cloud-firestore-admin (#1157)
fixes #1150
1 parent 71cb130 commit 50f3dfb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

  • dashboard/src/main/java/com/google/cloud/tools/opensource/cloudbomdashboard

dashboard/src/main/java/com/google/cloud/tools/opensource/cloudbomdashboard/DashboardMain.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,9 +149,11 @@ private static Path generate(Bom bom) throws IOException, TemplateException, URI
149149
// All dependencies with google-cloud-shared-dependencies must have group ID
150150
// "com.google.cloud". google-cloud-core and bigtable-emulator are unique
151151
// in that they do not require google-cloud-shared-dependencies.
152+
// google-cloud-firestore-admin is a module of google-cloud-firestore
152153
if ("com.google.cloud".equals(artifact.getGroupId())
153154
&& !artifact.getArtifactId().contains("google-cloud-core")
154-
&& !artifact.getArtifactId().contains("google-cloud-bigtable-emulator")) {
155+
&& !artifact.getArtifactId().contains("google-cloud-bigtable-emulator")
156+
&& !artifact.getArtifactId().contains("google-cloud-firestore-admin")) {
155157
managedDependencies.add(artifact);
156158
}
157159
}

0 commit comments

Comments
 (0)