HADOOP-14771. hadoop-client does not include hadoop-yarn-client. (Ajay Kumar via Haibo Chen)
Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/1ee25278 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/1ee25278 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/1ee25278 Branch: refs/heads/YARN-5734 Commit: 1ee25278c891e95ba2ab142e5b78aebd752ea163 Parents: 7c73292 Author: Haibo Chen <[email protected]> Authored: Mon Sep 18 14:25:35 2017 -0700 Committer: Haibo Chen <[email protected]> Committed: Mon Sep 18 14:25:35 2017 -0700 ---------------------------------------------------------------------- hadoop-client-modules/hadoop-client/pom.xml | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/1ee25278/hadoop-client-modules/hadoop-client/pom.xml ---------------------------------------------------------------------- diff --git a/hadoop-client-modules/hadoop-client/pom.xml b/hadoop-client-modules/hadoop-client/pom.xml index bed3f5c..6500ebf 100644 --- a/hadoop-client-modules/hadoop-client/pom.xml +++ b/hadoop-client-modules/hadoop-client/pom.xml @@ -179,6 +179,37 @@ <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-yarn-client</artifactId> + <scope>compile</scope> + <exclusions> + <!--Excluding hadoop-yarn-api & hadoop-annotations as they are already + included as direct dependencies. Guava,commons-cli and log4j are + transitive dependencies --> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-yarn-api</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-annotations</artifactId> + </exclusion> + <exclusion> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + </exclusion> + <exclusion> + <groupId>commons-cli</groupId> + <artifactId>commons-cli</artifactId> + </exclusion> + <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> + </exclusions> + </dependency> + + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <scope>compile</scope> <exclusions> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
