Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions gc/gc-iceberg-files/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ dependencies {
exclude("org.eclipse.jetty")
exclude("org.apache.zookeeper")
}
implementation(libs.hadoop.hdfs)
implementation(libs.hadoop.hdfs.client)
// Bump the jabx-impl version 2.2.3-1 via hadoop-common to make it work with Java 17+
implementation(libs.jaxb.impl)

Expand Down
2 changes: 2 additions & 0 deletions gc/gc-tool-inttest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ dependencies {
exclude("org.apache.hadoop")
exclude("org.apache.zookeeper")
}
intTestRuntimeOnly(libs.hadoop.hdfs)
intTestRuntimeOnly(libs.hadoop.hdfs.client)
// Bump the jabx-impl version 2.2.3-1 via hadoop-common to make it work with Java 17+
implementation(libs.jaxb.impl)

Expand Down
2 changes: 2 additions & 0 deletions gc/gc-tool/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ dependencies {
exclude("org.apache.hadoop")
exclude("org.apache.zookeeper")
}
runtimeOnly(libs.hadoop.hdfs)
runtimeOnly(libs.hadoop.hdfs.client)
// Bump the jabx-impl version 2.2.3-1 via hadoop-common to make it work with Java 17+
implementation(libs.jaxb.impl)

Expand Down
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ google-cloud-libraries-bom = { module = "com.google.cloud:libraries-bom", versio
google-java-format = { module = "com.google.googlejavaformat:google-java-format", version.ref = "googleJavaFormat" }
guava = { module = "com.google.guava:guava", version = "33.5.0-jre" }
h2 = { module = "com.h2database:h2", version = "2.4.240" }
hadoop-hdfs = { module = "org.apache.hadoop:hadoop-hdfs", version.ref = "hadoop" }
hadoop-hdfs-client = { module = "org.apache.hadoop:hadoop-hdfs-client", version.ref = "hadoop" }
hadoop-aws = { module = "org.apache.hadoop:hadoop-aws", version.ref = "hadoop" }
hadoop-azure = { module = "org.apache.hadoop:hadoop-azure", version.ref = "hadoop" }
hadoop-client = { module = "org.apache.hadoop:hadoop-client", version.ref = "hadoop" }
Expand Down
Loading