HADOOP-15584. Move httpcomponents versions in pom.xml. Contributed by Brandon Scheller.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/76d03651 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/76d03651 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/76d03651 Branch: refs/heads/YARN-3409 Commit: 76d0365190af472f922a62aa24dd7288a743210c Parents: b2432d2 Author: Akira Ajisaka <[email protected]> Authored: Wed Sep 12 14:28:47 2018 +0900 Committer: Akira Ajisaka <[email protected]> Committed: Wed Sep 12 14:28:47 2018 +0900 ---------------------------------------------------------------------- hadoop-project/pom.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/76d03651/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 18b907f..2fdf068 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -71,6 +71,10 @@ <jackson.version>1.9.13</jackson.version> <jackson2.version>2.9.5</jackson2.version> + <!-- httpcomponents versions --> + <httpclient.version>4.5.2</httpclient.version> + <httpcore.version>4.4.4</httpcore.version> + <!-- SLF4J version --> <slf4j.version>1.7.25</slf4j.version> @@ -732,12 +736,12 @@ <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> - <version>4.5.2</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>commons-codec</groupId> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
