From 8feb919167e51713a4fb9c1250c0546635bb1f04 Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Tue, 5 Mar 2024 08:25:24 -0800 Subject: [PATCH] netty/shaded: Add missing evaluationDependsOn `project(':grpc-netty').configurations` requires the grpc-netty project to be configured, which requires evaluationDependsOn. Without evaluationDependsOn, project loading order is arbitrary and you can get random errors after small configuration changes. --- netty/shaded/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netty/shaded/build.gradle b/netty/shaded/build.gradle index 3e52c3e0d9..a1151ca242 100644 --- a/netty/shaded/build.gradle +++ b/netty/shaded/build.gradle @@ -17,6 +17,8 @@ description = "gRPC: Netty Shaded" sourceSets { testShadow {} } +evaluationDependsOn(':grpc-netty') + dependencies { implementation project(':grpc-netty') runtimeOnly libraries.netty.tcnative,