Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hadoop to 3.3.3 #2919

Merged
merged 3 commits into from
Sep 27, 2022
Merged
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
8 changes: 4 additions & 4 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ object Dependencies {
val AkkaHttpBinaryVersion = "10.2"
val ScalaTestVersion = "3.2.11"
val TestContainersScalaTestVersion = "0.40.3"
val mockitoVersion = "4.2.0" // check even https://github.com/scalatest/scalatestplus-mockito/releases
val mockitoVersion = "4.8.0" // check even https://github.com/scalatest/scalatestplus-mockito/releases
val hoverflyVersion = "0.14.1"

val CouchbaseVersion = "2.7.16"
Expand Down Expand Up @@ -266,7 +266,7 @@ object Dependencies {

val HBase = {
val hbaseVersion = "1.4.13"
val hadoopVersion = "2.7.7"
val hadoopVersion = "3.3.3"
Seq(
libraryDependencies ++= Seq(
"org.apache.hbase" % "hbase-shaded-client" % hbaseVersion exclude ("log4j", "log4j") exclude ("org.slf4j", "slf4j-log4j12"), // ApacheV2,
Expand All @@ -278,7 +278,7 @@ object Dependencies {
)
}

val HadoopVersion = "3.2.1"
val HadoopVersion = "3.3.3"
val Hdfs = Seq(
libraryDependencies ++= Seq(
"org.apache.hadoop" % "hadoop-client" % HadoopVersion exclude ("log4j", "log4j") exclude ("org.slf4j", "slf4j-log4j12"), // ApacheV2
Expand All @@ -287,7 +287,7 @@ object Dependencies {
"org.apache.hadoop" % "hadoop-common" % HadoopVersion % Test exclude ("log4j", "log4j") exclude ("org.slf4j", "slf4j-log4j12"), // ApacheV2
"org.apache.hadoop" % "hadoop-minicluster" % HadoopVersion % Test exclude ("log4j", "log4j") exclude ("org.slf4j", "slf4j-log4j12"), // ApacheV2
"org.slf4j" % "log4j-over-slf4j" % log4jOverSlf4jVersion % Test // MIT like: http://www.slf4j.org/license.html
)
) ++ Mockito
)

val HuaweiPushKit = Seq(
Expand Down