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/75368150 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/75368150 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/75368150 Branch: refs/heads/HADOOP-13345 Commit: 75368150395901f65a4698e84be4e7bbdcba94fa Parents: c04fb35 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:43 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/75368150/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 f8aa371..9fd7bb4 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml +++ b/hadoop-hdfs-project/hadoop-hdfs-client/pom.xml @@ -37,7 +37,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/75368150/hadoop-project/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-project/pom.xml b/hadoop-project/pom.xml index 572f0e6..fbe961a 100644 --- a/hadoop-project/pom.xml +++ b/hadoop-project/pom.xml @@ -135,6 +135,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]
