Skip to content

Commit

Permalink
test: allowlist to include module-info (#5600)
Browse files Browse the repository at this point in the history
  • Loading branch information
suztomo authored Oct 31, 2022
1 parent aeae899 commit e1306fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/src/test/java/com/google/cloud/BomContentTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,10 @@ private static void assertUniqueClasses(List<Artifact> allArtifacts)
if (className.contains("javax.annotation")
|| className.contains("$")
|| className.endsWith("package-info")
|| className.endsWith("module-info")
|| className.equals("com.google.cloud.location.LocationsGrpc")
|| className.equals("com.google.gwt.core.client.UnsafeNativeLong")) {
// Ignore annotations, nested classes, and package-info files.
// Ignore annotations, nested classes, module-info and package-info files.
// Ignore LocationsGrpc classes which are duplicated in generated grpc libraries.
// Ignore GWT's UnsafeNativeLong, which appear in om.google.gwt:gwt-dev:2.9.0 and
// com.google.jsinterop:base:1.0.0.
Expand Down

0 comments on commit e1306fb

Please sign in to comment.