This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new b12929dbe [#4955]fix(IT): fix client IT (#4957)
b12929dbe is described below
commit b12929dbe95720552f1e9956529bb08eb8bcde15
Author: mchades <[email protected]>
AuthorDate: Wed Sep 18 16:27:03 2024 +0800
[#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 6a5a8eb6a..d928c5ce0 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")
}