This is an automated email from the ASF dual-hosted git repository. fanningpj pushed a commit to branch hdfs-cats in repository https://gitbox.apache.org/repos/asf/incubator-pekko-connectors.git
commit 97cffa14c2e5b9987c69be6060cfd2abb63beb00 Author: PJ Fanning <[email protected]> AuthorDate: Sun Jan 28 19:07:11 2024 +0100 upgrade-cats --- project/Dependencies.scala | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 6fc2132e3..55211c669 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -279,19 +279,21 @@ object Dependencies { "org.slf4j" % "log4j-over-slf4j" % log4jOverSlf4jVersion % Test)) } - val HadoopVersion = "3.2.1" - val Hdfs = Seq( - libraryDependencies ++= Seq( - ("org.apache.hadoop" % "hadoop-client" % HadoopVersion).exclude("log4j", "log4j").exclude("org.slf4j", - "slf4j-log4j12"), - "org.typelevel" %% "cats-core" % "2.9.0", - ("org.apache.hadoop" % "hadoop-hdfs" % HadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j", - "slf4j-log4j12"), - ("org.apache.hadoop" % "hadoop-common" % HadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j", - "slf4j-log4j12"), - ("org.apache.hadoop" % "hadoop-minicluster" % HadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j", - "slf4j-log4j12"), - "org.slf4j" % "log4j-over-slf4j" % log4jOverSlf4jVersion % Test)) + val Hdfs = { + val hdfsHadoopVersion = "3.2.1" + Seq( + libraryDependencies ++= Seq( + ("org.apache.hadoop" % "hadoop-client" % hdfsHadoopVersion).exclude("log4j", "log4j").exclude("org.slf4j", + "slf4j-log4j12"), + "org.typelevel" %% "cats-core" % "2.10.0", + ("org.apache.hadoop" % "hadoop-hdfs" % hdfsHadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j", + "slf4j-log4j12"), + ("org.apache.hadoop" % "hadoop-common" % hdfsHadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j", + "slf4j-log4j12"), + ("org.apache.hadoop" % "hadoop-minicluster" % hdfsHadoopVersion % Test).exclude("log4j", "log4j").exclude("org.slf4j", + "slf4j-log4j12"), + "org.slf4j" % "log4j-over-slf4j" % log4jOverSlf4jVersion % Test)) + } val HuaweiPushKit = Seq( libraryDependencies ++= Seq( --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
