Repository: hadoop Updated Branches: refs/heads/branch-2 ce0bb73c1 -> d578165b9
HDFS-9222. Add hadoop-hdfs-client as a dependency of hadoop-hdfs-native-client. Contributed by Mingliang Liu. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/d578165b Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/d578165b Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/d578165b Branch: refs/heads/branch-2 Commit: d578165b993be091ffaea774e61b46dae77a77ef Parents: ce0bb73 Author: Haohui Mai <[email protected]> Authored: Fri Oct 9 22:31:16 2015 -0700 Committer: Haohui Mai <[email protected]> Committed: Fri Oct 9 22:31:23 2015 -0700 ---------------------------------------------------------------------- hadoop-hdfs-project/hadoop-hdfs-native-client/pom.xml | 5 +++++ hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt | 3 +++ 2 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/d578165b/hadoop-hdfs-project/hadoop-hdfs-native-client/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs-native-client/pom.xml b/hadoop-hdfs-project/hadoop-hdfs-native-client/pom.xml index 6e92bd4..d1f103e 100644 --- a/hadoop-hdfs-project/hadoop-hdfs-native-client/pom.xml +++ b/hadoop-hdfs-project/hadoop-hdfs-native-client/pom.xml @@ -38,6 +38,11 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd"> <dependencies> <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs-client</artifactId> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <scope>test</scope> </dependency> http://git-wip-us.apache.org/repos/asf/hadoop/blob/d578165b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt index 47c2738..622e8dd 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -1189,6 +1189,9 @@ Release 2.8.0 - UNRELEASED HDFS-9215. Suppress the RAT warnings in hdfs-native-client module. (wheat9) + HDFS-9222. Add hadoop-hdfs-client as a dependency of + hadoop-hdfs-native-client. (Mingliang Liu via wheat9) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES
