This is an automated email from the ASF dual-hosted git repository. zhangduo pushed a commit to branch branch-2.5 in repository https://gitbox.apache.org/repos/asf/hbase.git
commit 18d6b00a70693d8cd48d3dc322d99fc4f261c4f3 Author: Nihal Jain <[email protected]> AuthorDate: Wed Jan 10 17:13:42 2024 +0530 [ADDENDUM] HBASE-28295 Few tests are failing due to NCDFE: org/bouncycastle/operator/OperatorCreationException (#5611) Signed-off-by: Duo Zhang <[email protected]> (cherry picked from commit 0db423101702b277b571f465f598aab3bfcce736) --- hbase-it/pom.xml | 6 ++++++ hbase-mapreduce/pom.xml | 1 + 2 files changed, 7 insertions(+) diff --git a/hbase-it/pom.xml b/hbase-it/pom.xml index 4be06defaa5..c3f4cc1d483 100644 --- a/hbase-it/pom.xml +++ b/hbase-it/pom.xml @@ -112,6 +112,12 @@ <artifactId>${compat.module}</artifactId> <version>${project.version}</version> </dependency> + <!-- Required by tests using MiniMRCluster --> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk18on</artifactId> + <scope>test</scope> + </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-endpoint</artifactId> diff --git a/hbase-mapreduce/pom.xml b/hbase-mapreduce/pom.xml index c1a1dd7085a..9203402880b 100644 --- a/hbase-mapreduce/pom.xml +++ b/hbase-mapreduce/pom.xml @@ -255,6 +255,7 @@ <artifactId>bcprov-jdk18on</artifactId> <scope>test</scope> </dependency> + <!-- Required by tests using MiniMRCluster --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId>
