Skip to content

Commit

Permalink
HBASE-28311 Few ITs (using MiniMRYarnCluster on hadoop-2) are failing…
Browse files Browse the repository at this point in the history
… due to NCDFE: com/sun/jersey/core/util/FeaturesAndProperties (apache#5674)(apache#5625)

Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit 1586ae1)
  • Loading branch information
NihalJain committed Feb 13, 2024
1 parent 6006eba commit c4b5ac9
Showing 1 changed file with 20 additions and 13 deletions.
33 changes: 20 additions & 13 deletions hbase-it/pom.xml
Original file line number Diff line number Diff line change
@@ -110,19 +110,6 @@
<artifactId>${compat.module}</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-testing-util</artifactId>
<exclusions>
<!--This dependency pulls in hadoop-minicluster
which pulls in the below. It messes up
this build at assembly time. See HBASE-22029-->
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-endpoint</artifactId>
@@ -388,6 +375,13 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minikdc</artifactId>
</dependency>
<!-- ITs using MiniMRYarnCluster fail with NCDFE, so adding this here. We are not having
same exclusions as in hadoop-3 profile, as for hadoop-3 it runs fine even with exclusions.
See HBASE-28311 for details. -->
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-testing-util</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
@@ -452,6 +446,19 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-minikdc</artifactId>
</dependency>
<dependency>
<groupId>org.apache.hbase</groupId>
<artifactId>hbase-testing-util</artifactId>
<exclusions>
<!--This dependency pulls in hadoop-minicluster
which pulls in the below. It messes up
this build at assembly time. See HBASE-22029-->
<exclusion>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-core</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>

0 comments on commit c4b5ac9

Please sign in to comment.