Repository: tez
Updated Branches:
refs/heads/branch-0.6 9355ceaa6 -> 6b39a4e24
TEZ-2623. Fix module dependencies related to hadoop-auth. (Rajat Jain via
hitesh)
(cherry picked from commit b093151f9f0b3337a0951fc9342e4bc915d60a5c)
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/6b39a4e2
Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/6b39a4e2
Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/6b39a4e2
Branch: refs/heads/branch-0.6
Commit: 6b39a4e2490294cfb026f85ed3bced25a6fb0292
Parents: 9355cea
Author: Hitesh Shah <[email protected]>
Authored: Mon Jul 27 14:37:09 2015 -0700
Committer: Hitesh Shah <[email protected]>
Committed: Mon Jul 27 14:38:15 2015 -0700
----------------------------------------------------------------------
CHANGES.txt | 1 +
pom.xml | 5 +++++
tez-api/pom.xml | 4 ++++
3 files changed, 10 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/tez/blob/6b39a4e2/CHANGES.txt
----------------------------------------------------------------------
diff --git a/CHANGES.txt b/CHANGES.txt
index e096da6..1b6d053 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -6,6 +6,7 @@ Release 0.6.2: Unreleased
INCOMPATIBLE CHANGES
ALL CHANGES:
+ TEZ-2623. Fix module dependencies related to hadoop-auth.
TEZ-2560. fix tex-ui build for maven 3.3+
TEZ-2600. When used with HDFS federation(viewfs) ,tez will throw a error
TEZ-2579. Incorrect comparison of TaskAttemptId
http://git-wip-us.apache.org/repos/asf/tez/blob/6b39a4e2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 73f8829..9ea90e5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -299,6 +299,11 @@
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-auth</artifactId>
+ <version>${hadoop.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<type>test-jar</type>
http://git-wip-us.apache.org/repos/asf/tez/blob/6b39a4e2/tez-api/pom.xml
----------------------------------------------------------------------
diff --git a/tez-api/pom.xml b/tez-api/pom.xml
index 88e78ab..14bd7f2 100644
--- a/tez-api/pom.xml
+++ b/tez-api/pom.xml
@@ -51,6 +51,10 @@
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
+ <artifactId>hadoop-auth</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-annotations</artifactId>
</dependency>
<dependency>