You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci: no need to check native-image-support gRPC convergence (#666)
I found googleapis/java-shared-dependencies#665 (comment) complains old gRPC version declared by "com.google.cloud:native-image-support" (provided scope). The artifact's gRPC dependency is irrelevant to users.
Copy file name to clipboardExpand all lines: java-shared-dependencies/dependency-convergence-check/src/test/java/com/google/cloud/DependencyConvergenceTest.java
+4-1
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,10 @@ public void testGrpcConvergence() throws Exception {
57
57
"opencensus-exporter-stats-stackdriver",
58
58
// Because grpc-gcp's gRPC version does not use version range notation, it does not
59
59
// break downstream build
60
-
"grpc-gcp"));
60
+
"grpc-gcp",
61
+
// Because native-image-support's gRPC dependency is provided scope, it does not bring
62
+
// inconsistent gRPC artifacts to users' class paths.
0 commit comments