This is an automated email from the ASF dual-hosted git repository.
ethanfeng pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-celeborn.git
The following commit(s) were added to refs/heads/main by this push:
new 1c7cd1bd1 [CELEBORN-1113][FOLLOWUP] Bump Hadoop client version from
3.2.4 to 3.3.6
1c7cd1bd1 is described below
commit 1c7cd1bd1392c8d3fd4396c539696dc79835f8dc
Author: sychen <[email protected]>
AuthorDate: Fri Dec 1 17:24:37 2023 +0800
[CELEBORN-1113][FOLLOWUP] Bump Hadoop client version from 3.2.4 to 3.3.6
### What changes were proposed in this pull request?
### Why are the changes needed?
https://github.com/apache/incubator-celeborn/pull/2077#issuecomment-1835701576
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
GA
Closes #2127 from cxzl25/CELEBORN-1113-FOLLOWUP.
Authored-by: sychen <[email protected]>
Signed-off-by: mingji <[email protected]>
---
project/CelebornBuild.scala | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/project/CelebornBuild.scala b/project/CelebornBuild.scala
index ebe8d1c52..96f590768 100644
--- a/project/CelebornBuild.scala
+++ b/project/CelebornBuild.scala
@@ -953,7 +953,8 @@ object MRClientProjects {
copyDepsSettings,
libraryDependencies ++= Seq(
"org.apache.hadoop" % "hadoop-client-minicluster" %
Dependencies.hadoopVersion % "test",
- "org.apache.hadoop" % "hadoop-mapreduce-examples" %
Dependencies.hadoopVersion % "test"
+ "org.apache.hadoop" % "hadoop-mapreduce-examples" %
Dependencies.hadoopVersion % "test",
+ "org.bouncycastle" % "bcpkix-jdk15on" % "1.68" % "test"
) ++ commonUnitTestDependencies
)
}