Skip to content
This repository was archived by the owner on Nov 23, 2022. It is now read-only.

Commit 5b8fb59

Browse files
committed
Jersey dependency pushed back to 1.7 for Hadoop-dependency-hell
When linking with Hadoop client libraries, we need to work against Jersey 1.7
1 parent f733792 commit 5b8fb59

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pom.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<groupId>org.jfarcand</groupId>
2323
<artifactId>jersey-ahc-client</artifactId>
2424
<name>jersey-ahc-client</name>
25-
<version>1.0.5</version>
25+
<version>1.0.5.jersey.1.7</version>
2626
<packaging>jar</packaging>
2727
<description>
2828
Async Http Client implementation for the Jersey Client API.
@@ -61,7 +61,7 @@
6161
</license>
6262
</licenses>
6363
<properties>
64-
<jersey.version>1.14</jersey.version>
64+
<jersey.version>1.7</jersey.version>
6565
<async-http-client-version>1.8.5</async-http-client-version>
6666
<netty-version>3.9.0.Final</netty-version>
6767
</properties>
@@ -75,6 +75,12 @@
7575
<groupId>com.sun.jersey</groupId>
7676
<artifactId>jersey-json</artifactId>
7777
<version>${jersey.version}</version>
78+
<exclusions>
79+
<exclusion>
80+
<groupId>org.codehaus.jettison</groupId>
81+
<artifactId>jettison</artifactId>
82+
</exclusion>
83+
</exclusions>
7884
</dependency>
7985
<dependency>
8086
<groupId>javax.ws.rs</groupId>

0 commit comments

Comments
 (0)