From 45554def76596bd7115d82bd21e006eb10b4b237 Mon Sep 17 00:00:00 2001 From: yifeizhuang Date: Mon, 9 Jan 2023 15:49:07 -0800 Subject: [PATCH] interop test: fix project evaluation order (#9800) --- interop-testing/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interop-testing/build.gradle b/interop-testing/build.gradle index f225eee95e..5fdb30659f 100644 --- a/interop-testing/build.gradle +++ b/interop-testing/build.gradle @@ -14,7 +14,9 @@ configurations { alpnagent } +evaluationDependsOn(project(':grpc-core').path) evaluationDependsOn(project(':grpc-context').path) +evaluationDependsOn(project(':grpc-api').path) dependencies { implementation project(path: ':grpc-alts', configuration: 'shadow'),