Repository: tez Updated Branches: refs/heads/master 694230966 -> b0eb9dc65
TEZ-3946. NoClassDefFoundError, org.apache.hadoop.mapred.ShuffleHandler. (Multiple tests with Hadoop3) (Eric Wohlstadter via jeagles) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/b0eb9dc6 Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/b0eb9dc6 Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/b0eb9dc6 Branch: refs/heads/master Commit: b0eb9dc656ba42a2a9b67a043765ecec5bfd8cd5 Parents: 6942309 Author: Jonathan Eagles <[email protected]> Authored: Mon Jun 4 13:43:27 2018 -0500 Committer: Jonathan Eagles <[email protected]> Committed: Mon Jun 4 13:43:27 2018 -0500 ---------------------------------------------------------------------- tez-plugins/tez-history-parser/pom.xml | 4 ++++ tez-plugins/tez-yarn-timeline-history-with-acls/pom.xml | 4 ++++ tez-tools/analyzers/job-analyzer/pom.xml | 4 ++++ 3 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/b0eb9dc6/tez-plugins/tez-history-parser/pom.xml ---------------------------------------------------------------------- diff --git a/tez-plugins/tez-history-parser/pom.xml b/tez-plugins/tez-history-parser/pom.xml index 6f46047..bfeb88e 100644 --- a/tez-plugins/tez-history-parser/pom.xml +++ b/tez-plugins/tez-history-parser/pom.xml @@ -140,6 +140,10 @@ <groupId>com.sun.jersey</groupId> <artifactId>jersey-json</artifactId> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-shuffle</artifactId> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/tez/blob/b0eb9dc6/tez-plugins/tez-yarn-timeline-history-with-acls/pom.xml ---------------------------------------------------------------------- diff --git a/tez-plugins/tez-yarn-timeline-history-with-acls/pom.xml b/tez-plugins/tez-yarn-timeline-history-with-acls/pom.xml index 3f5792f..dea92ea 100644 --- a/tez-plugins/tez-yarn-timeline-history-with-acls/pom.xml +++ b/tez-plugins/tez-yarn-timeline-history-with-acls/pom.xml @@ -139,6 +139,10 @@ <artifactId>jersey-json</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-shuffle</artifactId> + </dependency> </dependencies> <build> http://git-wip-us.apache.org/repos/asf/tez/blob/b0eb9dc6/tez-tools/analyzers/job-analyzer/pom.xml ---------------------------------------------------------------------- diff --git a/tez-tools/analyzers/job-analyzer/pom.xml b/tez-tools/analyzers/job-analyzer/pom.xml index ec305e7..8579897 100644 --- a/tez-tools/analyzers/job-analyzer/pom.xml +++ b/tez-tools/analyzers/job-analyzer/pom.xml @@ -148,6 +148,10 @@ <groupId>com.sun.jersey</groupId> <artifactId>jersey-json</artifactId> </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-mapreduce-client-shuffle</artifactId> + </dependency> </dependencies> <build>
