yuqi1129 commented on code in PR #5020: URL: https://github.com/apache/gravitino/pull/5020#discussion_r1801124561
########## clients/filesystem-hadoop3/build.gradle.kts: ########## @@ -71,6 +75,11 @@ tasks.build { dependsOn("javadoc") } +tasks.compileJava { Review Comment: This module depends on `catalog-hadoop`, however, due to the fact that the output directory of task `:catalogs:catalog-hadoop:jar` and `:catalogs:catalog-hadoop:runtimeJars` are the same (lib/build/), so we need to add these two dependency or gradle compile will fail, the same goes for others module ```gradle tasks.test { val skipITs = project.hasProperty("skipITs") 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") } } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@gravitino.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org