Skip to content

Commit

Permalink
Refactor usage of hadoop-mapreduce-client-core
Browse files Browse the repository at this point in the history
  • Loading branch information
mn-mikke committed Jul 26, 2023
1 parent 1668d88 commit b777d3a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions h2o-assemblies/main/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,15 @@ dependencies {
api project(":h2o-persist-hdfs")
api project(":h2o-ext-krbstandalone")
api project(":h2o-parquet-parser")
api("org.apache.hadoop:hadoop-mapreduce-client-core:${defaultHadoopVersion}") {
transitive = false
}
api project(":h2o-k8s-int")

api "org.apache.hadoop:hadoop-hdfs-client:${defaultHadoopVersion}"
implementation("org.apache.hadoop:hadoop-mapreduce-client-core:${defaultHadoopVersion}") {
transitive = false
}
api("org.apache.hadoop:hadoop-common:${defaultHadoopVersion}") {
exclude group: "com.sun.jersey"
exclude group: "javax.servlet"
Expand Down
3 changes: 3 additions & 0 deletions h2o-parsers/h2o-parquet-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ description = "H2O Parquet Parser"
dependencies {
testImplementation project(":h2o-test-support")
testImplementation project(":h2o-parquet-parser-tests")
testImplementation("org.apache.hadoop:hadoop-mapreduce-client-core:${defaultHadoopVersion}") {
transitive = false
}
testRuntimeOnly project(":${defaultWebserverModule}")
}

Expand Down
3 changes: 0 additions & 3 deletions h2o-parsers/h2o-parquet-parser/parquet_dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,4 @@ dependencies {
}
}
}
implementation("org.apache.hadoop:hadoop-mapreduce-client-core:${parquetHadoopVersion}") {
transitive = false
}
}

0 comments on commit b777d3a

Please sign in to comment.