You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@livy.apache.org by js...@apache.org on 2017/08/24 06:43:56 UTC

incubator-livy git commit: [LIVY-393][MINOR] Update httpclient to 4.5.3

Repository: incubator-livy
Updated Branches:
  refs/heads/master ca5b1be77 -> 317290d4b


[LIVY-393][MINOR] Update httpclient to 4.5.3

Currently the httpclient version in the root pom is 4.5.2 and in the client-http module it is 4.5.1

Now both use a common version and it's been updated to the latest version 4.5.3

Author: Alex Bozarth <aj...@us.ibm.com>

Closes #37 from ajbozarth/hc-version.

Change-Id: I986acdb633e3b67d5b6ac164fb3c0d7191f32ce1


Project: http://git-wip-us.apache.org/repos/asf/incubator-livy/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-livy/commit/317290d4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-livy/tree/317290d4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-livy/diff/317290d4

Branch: refs/heads/master
Commit: 317290d4b59b6304669a320158dbedf80072b835
Parents: ca5b1be
Author: Alex Bozarth <aj...@us.ibm.com>
Authored: Thu Aug 24 14:43:42 2017 +0800
Committer: jerryshao <ss...@hortonworks.com>
Committed: Thu Aug 24 14:43:42 2017 +0800

----------------------------------------------------------------------
 client-http/pom.xml | 4 ++--
 pom.xml             | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-livy/blob/317290d4/client-http/pom.xml
----------------------------------------------------------------------
diff --git a/client-http/pom.xml b/client-http/pom.xml
index 15e16db..b70a844 100644
--- a/client-http/pom.xml
+++ b/client-http/pom.xml
@@ -66,12 +66,12 @@
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpclient</artifactId>
-      <version>4.5.1</version>
+      <version>${httpclient.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>
       <artifactId>httpcore</artifactId>
-      <version>4.4.4</version>
+      <version>${httpcore.version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.httpcomponents</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-livy/blob/317290d4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 34a92cd..6c9ebcc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -82,7 +82,7 @@
     <hadoop.scope>compile</hadoop.scope>
     <spark.version>1.6.2</spark.version>
     <commons-codec.version>1.9</commons-codec.version>
-    <httpclient.version>4.5.2</httpclient.version>
+    <httpclient.version>4.5.3</httpclient.version>
     <httpcore.version>4.4.4</httpcore.version>
     <jackson.version>2.4.4</jackson.version>
     <javax.servlet-api.version>3.1.0</javax.servlet-api.version>