Repository: hadoop Updated Branches: refs/heads/trunk d0c1e5fec -> 18950c0a5
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/18950c0a Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/18950c0a Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/18950c0a Branch: refs/heads/trunk Commit: 18950c0a551e4af973981d6de507efd90a2a0454 Parents: d0c1e5f 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:16 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/18950c0a/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 12e6ec8..72fd6fb 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/18950c0a/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 8988f48..541dc99 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt +++ b/hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt @@ -2012,6 +2012,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
