Repository: tez Updated Branches: refs/heads/master 9b1d507df -> a00ff88b0
TEZ-2623. tez-runtime-library should depend on 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/a00ff88b Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/a00ff88b Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/a00ff88b Branch: refs/heads/master Commit: a00ff88b01ce86ac0370b421bde450bdfb465d96 Parents: 9b1d507 Author: Hitesh Shah <[email protected]> Authored: Mon Jul 20 21:43:46 2015 -0700 Committer: Hitesh Shah <[email protected]> Committed: Mon Jul 20 21:43:46 2015 -0700 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ pom.xml | 5 +++++ tez-runtime-library/pom.xml | 4 ++++ 3 files changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/a00ff88b/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 7d3d296..3382c5e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -11,6 +11,7 @@ INCOMPATIBLE CHANGES TEZ-2468. Change the minimum Java version to Java 7. ALL CHANGES: + TEZ-2623. tez-runtime-library should depend on hadoop-auth. TEZ-2496. Consider scheduling tasks in ShuffleVertexManager based on the partition sizes from the source. TEZ-2616. Fix build warning by undefined version of maven-findbugs-plugin. TEZ-2588. Improper argument name @@ -52,6 +53,7 @@ Release 0.7.1: Unreleased INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-2623. tez-runtime-library should depend on 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. @@ -269,6 +271,7 @@ Release 0.6.2: Unreleased INCOMPATIBLE CHANGES ALL CHANGES: + TEZ-2623. tez-runtime-library should depend on hadoop-auth. TEZ-2600. When used with HDFS federation(viewfs) ,tez will throw a error TEZ-2579. Incorrect comparison of TaskAttemptId TEZ-2549. Reduce Counter Load on the Timeline Server http://git-wip-us.apache.org/repos/asf/tez/blob/a00ff88b/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index c9efa11..8652c0e 100644 --- a/pom.xml +++ b/pom.xml @@ -313,6 +313,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/a00ff88b/tez-runtime-library/pom.xml ---------------------------------------------------------------------- diff --git a/tez-runtime-library/pom.xml b/tez-runtime-library/pom.xml index 369c2d9..25f1cc1 100644 --- a/tez-runtime-library/pom.xml +++ b/tez-runtime-library/pom.xml @@ -59,6 +59,10 @@ </dependency> <dependency> <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-auth</artifactId> + </dependency> + <dependency> + <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> </dependency> <dependency>
