File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
tests/src/test/java/com/google/cloud Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -73,6 +73,17 @@ private void checkBom(Path bomPath) throws Exception {
73
73
Bom bom = Bom .readBom (bomPath );
74
74
List <Artifact > artifacts = bom .getManagedDependencies ();
75
75
for (Artifact artifact : artifacts ) {
76
+ String artifactId = artifact .getArtifactId ();
77
+ String groupId = artifact .getGroupId ();
78
+ if (("com.google.analytics.api.grpc" .equals (groupId )
79
+ && (artifactId .contains ("analytics-admin" ) || artifactId .contains ("analytics-data" )))
80
+ || ("com.google.area120.api.grpc" .equals (groupId )
81
+ && artifactId .contains ("google-area120-tables" ))) {
82
+ // TODO: Remove this logic once https://github.com/googleapis/google-cloud-java/issues/9304
83
+ // is fixed
84
+ continue ;
85
+ }
86
+
76
87
assertReachable (buildMavenCentralUrl (artifact ));
77
88
}
78
89
You can’t perform that action at this time.
0 commit comments