HDFS-10394. move declaration of okhttp version from hdfs-client to hadoop-project POM. Contributed by Xiaobing Zhou.
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/dbdd97d0 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/dbdd97d0 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/dbdd97d0 Branch: refs/heads/branch-2 Commit: dbdd97d0576107eda9df77c196e78f02a80ae037 Parents: 6c11a75 Author: Xiaobing Zhou <[email protected]> Authored: Thu Mar 16 18:13:43 2017 -0700 Committer: Arpit Agarwal <[email protected]> Committed: Thu Mar 16 18:13:55 2017 -0700 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs-client/pom.xml | 1 - hadoop-project/pom.xml | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/dbdd97d0/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml b/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml index 4db332d..148e7a8 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml +++ b/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml @@ -38,7 +38,6 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd"> <dependency> <groupId>com.squareup.okhttp</groupId> <artifactId>okhttp</artifactId> - <version>2.4.0</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> http://git-wip-us.apache.org/repos/asf/hadoop/blob/dbdd97d0/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index a4cb4ff..f21b789 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -123,6 +123,11 @@ <dependencyManagement> <dependencies> <dependency> + <groupId>com.squareup.okhttp</groupId> + <artifactId>okhttp</artifactId> + <version>2.4.0</version> + </dependency> + <dependency> <groupId>jdiff</groupId> <artifactId>jdiff</artifactId> <version>${jdiff.version}</version> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
