diff options
author | Prudence Au <prudence.au@amdocs.com> | 2018-09-20 16:27:49 -0400 |
---|---|---|
committer | Prudence Au <prudence.au@amdocs.com> | 2018-09-20 16:31:07 -0400 |
commit | e428130fe181aa6d433afc00c214ed45650c3777 (patch) | |
tree | bf0a046f8ae6d18357661a8db1515830a9658444 | |
parent | 52cc9f2b67230c9b1bfd38fd15310662eae44ce6 (diff) |
Fix start up issue
Change-Id: I9eea364ce0f8e599dbcf18c6aff3e156a6a2716f
Signed-off-by: Prudence Au <prudence.au@amdocs.com>
Issue-ID: LOG-667
-rw-r--r-- | pom.xml | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -71,6 +71,17 @@ <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>com.sun.jersey</groupId>
+ <artifactId>jersey-client</artifactId>
+ <version>1.19.4</version>
+ <exclusions>
+ <exclusion>
+ <groupId>javax.ws.rs</groupId>
+ <artifactId>jsr311-api</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
<!-- logging dependencies -->
<dependency>
|