diff options
5 files changed, 7 insertions, 6 deletions
diff --git a/onboarding/pom.xml b/onboarding/pom.xml index 8d43c51028..21a4d8244e 100644 --- a/onboarding/pom.xml +++ b/onboarding/pom.xml @@ -67,7 +67,8 @@ <freemarker.version>2.3.26-incubating</freemarker.version> <hibernate.validator.version>5.3.3.Final </hibernate.validator.version> <!--5.3.1.Final changed to 5.3.3.Final to include jboss-logging 3.3.0.Final for 1702 --> - <http.client.version>4.4.1</http.client.version> + <http.client.version>4.5.3</http.client.version> + <http.core.version>4.4.1</http.core.version> <httpasyncclient.version>4.1.2</httpasyncclient.version> <janino.version>2.7.7</janino.version> <jaxb.impl.version>2.2.11</jaxb.impl.version> diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-services/pom.xml b/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-services/pom.xml index 1a5360f6e0..bdafc6b802 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-services/pom.xml +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/action-library-rest/action-library-rest-services/pom.xml @@ -64,7 +64,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> - <version>${http.client.version}</version> + <version>${http.core.version}</version> </dependency> <dependency> diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/notifications-fe/pom.xml b/openecomp-be/api/openecomp-sdc-rest-webapp/notifications-fe/pom.xml index 319b0285cb..b716f98df8 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/notifications-fe/pom.xml +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/notifications-fe/pom.xml @@ -137,7 +137,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.3.6</version> + <version>${http.client.version}</version> </dependency> <dependency> <groupId>org.apache.cxf</groupId> diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/pom.xml b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/pom.xml index 2999b08211..91ee1a14d1 100644 --- a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/pom.xml +++ b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/pom.xml @@ -48,7 +48,7 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> - <version>${http.client.version}</version> + <version>${http.core.version}</version> </dependency> <!-- Java Stuff --> diff --git a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/pom.xml b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/pom.xml index fb55d28017..eccc5731d9 100644 --- a/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/pom.xml +++ b/openecomp-be/lib/openecomp-sdc-notification-lib/openecomp-sdc-notification-worker/pom.xml @@ -47,13 +47,13 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.4.1</version> + <version>${http.client.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> - <version>4.4.1</version> + <version>${http.core.version}</version> <scope>provided</scope> </dependency> <dependency> |