You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2016/04/08 13:52:31 UTC

spark git commit: [SPARK-14470] Allow for overriding both httpclient and httpcore versions

Repository: spark
Updated Branches:
  refs/heads/master 644709801 -> 583b5e053


[SPARK-14470] Allow for overriding both httpclient and httpcore versions

## What changes were proposed in this pull request?

This splits commons.httpclient.version from commons.httpcore.version, since these two versions do not necessarily have to be the same.  This change may follow up with an up-to-date version of the httpclient/httpcore libraries.

The latest 4.3.x httpclient version as of writing is 4.3.6 and the latest 4.3.x httpcore version as of writing is 4.3.3.  This change would be a prerequisite for potentially moving to this new bugfix version.

## How was this patch tested?
no version change was made for httpclient/httpcore versions
mvn package

Author: Aaron Tokhy <to...@amazon.com>

Closes #12245 from atokhy/pull-request.


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/583b5e05
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/583b5e05
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/583b5e05

Branch: refs/heads/master
Commit: 583b5e05309adb73cdffd974a810d6bfb5f2ff95
Parents: 6447098
Author: Aaron Tokhy <to...@amazon.com>
Authored: Fri Apr 8 12:52:25 2016 +0100
Committer: Sean Owen <so...@cloudera.com>
Committed: Fri Apr 8 12:52:25 2016 +0100

----------------------------------------------------------------------
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/583b5e05/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 66a34e4..1b40983 100644
--- a/pom.xml
+++ b/pom.xml
@@ -151,6 +151,7 @@
     <aws.kinesis.producer.version>0.10.2</aws.kinesis.producer.version>
     <!--  org.apache.httpcomponents/httpclient-->
     <commons.httpclient.version>4.3.2</commons.httpclient.version>
+    <commons.httpcore.version>4.3.2</commons.httpcore.version>
     <!--  commons-httpclient/commons-httpclient-->
     <httpclient.classic.version>3.1</httpclient.classic.version>
     <commons.math3.version>3.4.1</commons.math3.version>
@@ -412,7 +413,7 @@
       <dependency>
         <groupId>org.apache.httpcomponents</groupId>
         <artifactId>httpcore</artifactId>
-        <version>${commons.httpclient.version}</version>
+        <version>${commons.httpcore.version}</version>
       </dependency>
       <dependency>
         <groupId>org.seleniumhq.selenium</groupId>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org