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.
This commit is contained in:
Eric Anderson 2024-03-05 08:25:24 -08:00
parent 9947a25765
commit 8feb919167
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,8 @@ description = "gRPC: Netty Shaded"
sourceSets { testShadow {} }
evaluationDependsOn(':grpc-netty')
dependencies {
implementation project(':grpc-netty')
runtimeOnly libraries.netty.tcnative,