Repository: tez
Updated Branches:
refs/heads/branch-0.7 ef555b7db -> 77f7e1840
TEZ-2887. Tez build failure due to missing dependency in pom files. (Ashish
Singh via hitesh)
(cherry picked from commit df3bc332083a2a1c8680e442f1906db8e6d7ee2b)
Conflicts:
CHANGES.txt
Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/77f7e184
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/77f7e184
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/77f7e184
Branch: refs/heads/branch-0.7
Commit: 77f7e1840df9f34a6ec2833396e467b89479638f
Parents: ef555b7
Author: Hitesh Shah <[email protected]>
Authored: Tue Oct 13 16:23:51 2015 -0700
Committer: Hitesh Shah <[email protected]>
Committed: Tue Oct 13 16:24:55 2015 -0700
----------------------------------------------------------------------
CHANGES.txt | 1 +
tez-common/pom.xml | 4 ++++
tez-tests/pom.xml | 5 +++++
3 files changed, 10 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/tez/blob/77f7e184/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 7511506..1069ae3 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,7 @@ Release 0.7.1: Unreleased
INCOMPATIBLE CHANGES
ALL CHANGES
+ TEZ-2887. Tez build failure due to missing dependency in pom files.
TEZ-2096. TEZ-UI : Add link to view AM log of finished & running apps
TEZ-2874. Improved logging for caller context.
TEZ-2781. Fallback to send only TaskAttemptFailedEvent if taskFailed
heartbeat fails
http://git-wip-us.apache.org/repos/asf/tez/blob/77f7e184/tez-common/pom.xml
----------------------------------------------------------------------
diff --git a/tez-common/pom.xml b/tez-common/pom.xml
index 40bd3e2..abdf2cc 100644
--- a/tez-common/pom.xml
+++ b/tez-common/pom.xml
@@ -50,6 +50,10 @@
<artifactId>hadoop-yarn-api</artifactId>
</dependency>
<dependency>
+ <groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-yarn-common</artifactId>
+ </dependency>
+ <dependency>
<groupId>org.apache.tez</groupId>
<artifactId>tez-api</artifactId>
</dependency>
http://git-wip-us.apache.org/repos/asf/tez/blob/77f7e184/tez-tests/pom.xml
----------------------------------------------------------------------
diff --git a/tez-tests/pom.xml b/tez-tests/pom.xml
index 62e97e6..e16d038 100644
--- a/tez-tests/pom.xml
+++ b/tez-tests/pom.xml
@@ -69,6 +69,11 @@
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-hdfs</artifactId>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-yarn-api</artifactId>
</dependency>
<dependency>