Skip to content

Commit 7cc15fc

Browse files
authored
HBASE-27820: HBase is not starting due to Jersey library conflicts wi… (apache#5210)
Signed-off-by: Wellington Chevreuil <[email protected]> Signed-off-by: Duo Zhang <[email protected]> Signed-off-by: Ankit Singhal <[email protected]>
1 parent 79c985f commit 7cc15fc

3 files changed

Lines changed: 5 additions & 13 deletions

File tree

hbase-http/pom.xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@
9393
<groupId>javax.servlet</groupId>
9494
<artifactId>javax.servlet-api</artifactId>
9595
</dependency>
96-
<dependency>
97-
<groupId>javax.ws.rs</groupId>
98-
<artifactId>javax.ws.rs-api</artifactId>
99-
</dependency>
10096
<dependency>
10197
<groupId>com.github.stephenc.findbugs</groupId>
10298
<artifactId>findbugs-annotations</artifactId>

hbase-mapreduce/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,11 @@
288288
<type>test-jar</type>
289289
<scope>test</scope>
290290
</dependency>
291+
<dependency>
292+
<groupId>javax.ws.rs</groupId>
293+
<artifactId>javax.ws.rs-api</artifactId>
294+
<scope>test</scope>
295+
</dependency>
291296
<dependency>
292297
<!--maven dependency:analyze says not needed but tests fail w/o-->
293298
<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)