You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tez.apache.org by hi...@apache.org on 2015/10/14 01:24:03 UTC

tez git commit: TEZ-2887. Tez build failure due to missing dependency in pom files. (Ashish Singh via hitesh)

Repository: tez
Updated Branches:
  refs/heads/master 822bc6927 -> df3bc3320


TEZ-2887. Tez build failure due to missing dependency in pom files. (Ashish Singh via hitesh)


Project: http://git-wip-us.apache.org/repos/asf/tez/repo
Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/df3bc332
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/df3bc332
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/df3bc332

Branch: refs/heads/master
Commit: df3bc332083a2a1c8680e442f1906db8e6d7ee2b
Parents: 822bc69
Author: Hitesh Shah <hi...@apache.org>
Authored: Tue Oct 13 16:23:51 2015 -0700
Committer: Hitesh Shah <hi...@apache.org>
Committed: Tue Oct 13 16:23:51 2015 -0700

----------------------------------------------------------------------
 CHANGES.txt        | 5 ++---
 tez-common/pom.xml | 4 ++++
 tez-tests/pom.xml  | 5 +++++
 3 files changed, 11 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tez/blob/df3bc332/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index 52aa159..dc22ddd 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,14 +1,12 @@
 Apache Tez Change Log
 =====================
 
-
-
 Release 0.8.2: Unreleased
 
 INCOMPATIBLE CHANGES
 
 ALL CHANGES:
-
+  TEZ-2887. Tez build failure due to missing dependency in pom files.
 
 
 Release 0.8.1-alpha: 2015-10-12
@@ -213,6 +211,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/df3bc332/tez-common/pom.xml
----------------------------------------------------------------------
diff --git a/tez-common/pom.xml b/tez-common/pom.xml
index 9834727..a521d54 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/df3bc332/tez-tests/pom.xml
----------------------------------------------------------------------
diff --git a/tez-tests/pom.xml b/tez-tests/pom.xml
index 5fcd314..0bac721 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>