Repository: tez Updated Branches: refs/heads/branch-0.7 002e8687a -> b093151f9
TEZ-2623. Fix module dependencies related to hadoop-auth. (Rajat Jain via hitesh) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/b093151f Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/b093151f Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/b093151f Branch: refs/heads/branch-0.7 Commit: b093151f9f0b3337a0951fc9342e4bc915d60a5c Parents: 002e868 Author: Hitesh Shah <[email protected]> Authored: Mon Jul 27 14:37:09 2015 -0700 Committer: Hitesh Shah <[email protected]> Committed: Mon Jul 27 14:37:09 2015 -0700 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ pom.xml | 5 +++++ tez-api/pom.xml | 4 ++++ 3 files changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/b093151f/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 6f74d71..6a8723f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -6,6 +6,7 @@ Release 0.7.1: Unreleased INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-2623. Fix module dependencies related to hadoop-auth. TEZ-1314. Port MAPREDUCE-5821 to Tez. TEZ-2568. V_INPUT_DATA_INFORMATION may happen after vertex is initialized TEZ-2291. TEZ UI: Improper vertex name in tables. @@ -222,6 +223,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/b093151f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e29d40b..cde8bba 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/b093151f/tez-api/pom.xml ---------------------------------------------------------------------- diff --git a/tez-api/pom.xml b/tez-api/pom.xml index 4b10b9a..123696e 100644 --- a/tez-api/pom.xml +++ b/tez-api/pom.xml @@ -47,6 +47,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>
