Skip to content

Commit

Permalink
add hive-iceberg-handler
Browse files Browse the repository at this point in the history
  • Loading branch information
Abacn committed Jan 27, 2025
1 parent 929fa9f commit c366f1a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion sdks/java/io/iceberg/hive/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ def avatica_version = "1.25.0"
dependencies {
// dependencies needed to run with iceberg's hive catalog
// these dependencies are going to be included in io-expansion-service
runtimeOnly ("org.apache.hive:hive-iceberg-catalog:$hive_version")
runtimeOnly ("org.apache.hive:hive-iceberg-handler:$hive_version") {
// prefer to use unshaded hive-exec
exclude group: "org.apache.hive", module: "hive-exec"
}
// analyzeClassesDependencies fails with "Cannot accept visitor on URL", likely the plugin does not recognize "core" classifier
// use "core" classifier to depend on un-shaded jar
runtimeOnly ("org.apache.hive:hive-exec:$hive_version:core") {
Expand Down

0 comments on commit c366f1a

Please sign in to comment.