From e8f36fa522d9696b3c37e1143d1279e921b0a6db Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Tue, 18 Jul 2023 10:07:43 -0700 Subject: [PATCH] all: Remove grpc-context from grpc-all grpc-context is empty, so isn't needed. Including it also causes the warning: ``` > Task :grpc-all:javadoc Resolution of the configuration :grpc-context:compileClasspath was attempted from a context different than the project context. Have a look at the documentation to understand why this is a problem and how it can be resolved. This behaviour has been deprecated and is scheduled to be removed in Gradle 8.0. See https://docs.gradle.org/7.6/userguide/viewing_debugging_dependencies.html#sub:resolving-unsafe-configuration-resolution-errors for more details. ``` --- all/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/all/build.gradle b/all/build.gradle index 100e016aa3..9e70545109 100644 --- a/all/build.gradle +++ b/all/build.gradle @@ -10,7 +10,6 @@ description = "gRPC: All" def subprojects = [ project(':grpc-api'), project(':grpc-auth'), - project(':grpc-context'), project(':grpc-core'), project(':grpc-grpclb'), project(':grpc-netty'),