From b12929dbe95720552f1e9956529bb08eb8bcde15 Mon Sep 17 00:00:00 2001 From: mchades Date: Wed, 18 Sep 2024 16:27:03 +0800 Subject: [PATCH] [#4955]fix(IT): fix client IT (#4957) ### What changes were proposed in this pull request? - add dependsOn hadoop catalog jar ### Why are the changes needed? Fix: #4955 ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? CI passed --- clients/client-java/build.gradle.kts | 1 + 1 file changed, 1 insertion(+) diff --git a/clients/client-java/build.gradle.kts b/clients/client-java/build.gradle.kts index 6a5a8eb6a51..d928c5ce006 100644 --- a/clients/client-java/build.gradle.kts +++ b/clients/client-java/build.gradle.kts @@ -73,6 +73,7 @@ tasks.test { if (skipITs) { exclude("**/integration/test/**") } else { + dependsOn(":catalogs:catalog-hadoop:jar", ":catalogs:catalog-hadoop:runtimeJars") dependsOn(":catalogs:catalog-hive:jar", ":catalogs:catalog-hive:runtimeJars") dependsOn(":catalogs:catalog-kafka:jar", ":catalogs:catalog-kafka:runtimeJars") }