Skip to content

Commit aec67c3

Browse files
ragarkarwchevreuil
authored andcommitted
HBASE-27820: HBase is not starting due to Jersey library conflicts wi… (#5210)
Signed-off-by: Wellington Chevreuil <wchevreuil@apache.org> Signed-off-by: Duo Zhang <zhangduo@apache.org> Signed-off-by: Ankit Singhal <ankit@apache.org> (cherry picked from commit 7cc15fc)
1 parent 86faefa commit aec67c3

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

hbase-http/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@
8080
<groupId>javax.servlet</groupId>
8181
<artifactId>javax.servlet-api</artifactId>
8282
</dependency>
83-
<dependency>
84-
<groupId>javax.ws.rs</groupId>
85-
<artifactId>javax.ws.rs-api</artifactId>
86-
</dependency>
8783
<dependency>
8884
<groupId>com.github.stephenc.findbugs</groupId>
8985
<artifactId>findbugs-annotations</artifactId>

hbase-mapreduce/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,11 @@
326326
<type>test-jar</type>
327327
<scope>test</scope>
328328
</dependency>
329+
<dependency>
330+
<groupId>javax.ws.rs</groupId>
331+
<artifactId>javax.ws.rs-api</artifactId>
332+
<scope>test</scope>
333+
</dependency>
329334
<dependency>
330335
<!--maven dependency:analyze says not needed but tests fail w/o-->
331336
<groupId>org.apache.hadoop</groupId>

hbase-rest/pom.xml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,6 @@
3030
<name>Apache HBase - Rest</name>
3131
<description>HBase Rest Server</description>
3232
<dependencies>
33-
<!--This one is upfront to get in front of
34-
any dependency that pulls in jersey-core.
35-
Jersey-core has implemented version 1
36-
Interfaces of what is in this dependency
37-
which does version 2.-->
38-
<dependency>
39-
<groupId>javax.ws.rs</groupId>
40-
<artifactId>javax.ws.rs-api</artifactId>
41-
</dependency>
4233
<!-- Intra-project dependencies -->
4334
<dependency>
4435
<groupId>org.apache.hbase</groupId>

0 commit comments

Comments
 (0)