Repository: incubator-zeppelin Updated Branches: refs/heads/master 1e34c8ab8 -> 1c48b9f6a
Update HttpClient Dependencies ### What is this PR for? HttpClient dependencies of the stack needs to be addressed as below (due to end of life of commons-httpclient and security issues) 1] Need to identify all components that are still using commons-httpclient. This is already end-of-lived by apache and consumers need to move to HttpComponents.HttpClient 4.3.6 or later 2] All consumers of HttpComponents.HttpClient needs to be on at least 4.3.6 ### What type of PR is it? [Improvement] ### Todos * [x] - migrate all commons-httpclient to org.apache.httpcomponents ### What is the Jira issue? * [ZEPPELIN-860](https://issues.apache.org/jira/browse/ZEPPELIN-860) ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Prabhjyot Singh <[email protected]> Closes #897 from prabhjyotsingh/httpclientVersionMigrate and squashes the following commits: e89beb7 [Prabhjyot Singh] migrate all commons-httpclient to org.apache.httpcomponents Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/1c48b9f6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/1c48b9f6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/1c48b9f6 Branch: refs/heads/master Commit: 1c48b9f6a483b52a715d9258c880bb335317e80a Parents: 1e34c8a Author: Prabhjyot Singh <[email protected]> Authored: Wed May 18 21:08:14 2016 +0530 Committer: Prabhjyot Singh <[email protected]> Committed: Mon May 23 10:40:11 2016 +0530 ---------------------------------------------------------------------- zeppelin-server/pom.xml | 6 +++--- zeppelin-zengine/pom.xml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/1c48b9f6/zeppelin-server/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-server/pom.xml b/zeppelin-server/pom.xml index 0d9da0b..b1c0cef 100644 --- a/zeppelin-server/pom.xml +++ b/zeppelin-server/pom.xml @@ -184,9 +184,9 @@ </dependency> <dependency> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - <version>3.1</version> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.3.6</version> <scope>test</scope> <exclusions> <exclusion> http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/1c48b9f6/zeppelin-zengine/pom.xml ---------------------------------------------------------------------- diff --git a/zeppelin-zengine/pom.xml b/zeppelin-zengine/pom.xml index 6c0275b..9be82ec 100644 --- a/zeppelin-zengine/pom.xml +++ b/zeppelin-zengine/pom.xml @@ -115,16 +115,16 @@ <version>1.5.2</version> <exclusions> <exclusion> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> </exclusion> </exclusions> </dependency> <dependency> - <groupId>commons-httpclient</groupId> - <artifactId>commons-httpclient</artifactId> - <version>3.1</version> + <groupId>org.apache.httpcomponents</groupId> + <artifactId>httpclient</artifactId> + <version>4.3.6</version> </dependency> <dependency>
