diff options
author | Kajur, Harish (vk250x) <vk250x@att.com> | 2018-04-19 09:31:36 -0400 |
---|---|---|
committer | Kajur, Harish (vk250x) <vk250x@att.com> | 2018-04-19 13:22:12 -0400 |
commit | caac2b0ea280a67e5b2bc82ac368bea2c3b9b0da (patch) | |
tree | 472ea9a87776798d4469901b731a3050dd2aeb25 /aai-client-loadbalancer | |
parent | 235f7eb30eb3eea9bf9e56e0e4bc2bee458abbd4 (diff) |
Fix the spring core and netty handler issue
Issue-ID: AAI-586
Change-Id: I69efb05f9fb82ffe1a97042e493c754b55bfb269
Signed-off-by: Kajur, Harish (vk250x) <vk250x@att.com>
Diffstat (limited to 'aai-client-loadbalancer')
-rw-r--r-- | aai-client-loadbalancer/pom.xml | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/aai-client-loadbalancer/pom.xml b/aai-client-loadbalancer/pom.xml index 6279eb34..59905cc6 100644 --- a/aai-client-loadbalancer/pom.xml +++ b/aai-client-loadbalancer/pom.xml @@ -56,6 +56,16 @@ <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-ribbon</artifactId> + <exclusions> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-jdk15on</artifactId> + </exclusion> + <exclusion> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> @@ -73,6 +83,11 @@ </exclusions> </dependency> <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + <version>4.3.16.RELEASE</version> + </dependency> + <dependency> <groupId>com.att.eelf</groupId> <artifactId>eelf-core</artifactId> <version>1.0.0</version> @@ -80,7 +95,7 @@ <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> - <version>4.0.29.Final</version> + <version>4.1.9.Final</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> @@ -97,6 +112,16 @@ <artifactId>logback-access</artifactId> <version>${logback.version}</version> </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-core</artifactId> + <version>2.8.11</version> + </dependency> + <dependency> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> + <version>2.8.11</version> + </dependency> </dependencies> <dependencyManagement> |