aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorseanfos <sean.osullivan@est.tech>2021-07-06 16:35:23 +0100
committerseanfos <sean.osullivan@est.tech>2021-07-06 16:35:50 +0100
commit34db7e236b2864fe7a0732a84522730264b6138d (patch)
tree344df18f9a0593569cb10aa13faf2334c048f104
parent65aaa3eb6fb0de267819431f7831100ec162de92 (diff)
[DMAAP-CLIENT] Add hk2 dependency
Signed-off-by: seanfos <sean.osullivan@est.tech> Change-Id: I2d69ac09588d4fcc67e6a791bce992da4070e2e9 Issue-ID: DMAAP-1627
-rw-r--r--pom.xml19
1 files changed, 19 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 62fc85f..b07244a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -184,6 +184,25 @@
<version>${jersey.version}</version>
</dependency>
<dependency>
+ <groupId>org.glassfish.jersey.inject</groupId>
+ <artifactId>jersey-hk2</artifactId>
+ <version>${jersey.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>org.glassfish.hk2.external</groupId>
+ <artifactId>javax.inject</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>javax.annotation</groupId>
+ <artifactId>javax.annotation-api</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>org.javassist</groupId>
+ <artifactId>javassist</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>