Repository: tez Updated Branches: refs/heads/master ca607d65e -> f16b5bffb
TEZ-3690. Tez on hadoop 3 build failed due to hdfs client/server jar separation (Junping Du via zhiyuany) Project: http://git-wip-us.apache.org/repos/asf/tez/repo Commit: http://git-wip-us.apache.org/repos/asf/tez/commit/f16b5bff Tree: http://git-wip-us.apache.org/repos/asf/tez/tree/f16b5bff Diff: http://git-wip-us.apache.org/repos/asf/tez/diff/f16b5bff Branch: refs/heads/master Commit: f16b5bffb54dc823cf7c296c4baa34f3d6f89287 Parents: ca607d6 Author: Zhiyuan Yang <[email protected]> Authored: Fri Apr 21 15:10:44 2017 -0700 Committer: Zhiyuan Yang <[email protected]> Committed: Fri Apr 21 15:10:44 2017 -0700 ---------------------------------------------------------------------- tez-api/pom.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tez/blob/f16b5bff/tez-api/pom.xml ---------------------------------------------------------------------- diff --git a/tez-api/pom.xml b/tez-api/pom.xml index dac2bd3..beff3c4 100644 --- a/tez-api/pom.xml +++ b/tez-api/pom.xml @@ -208,4 +208,16 @@ </plugins> </reporting> + <profiles> + <profile> + <id>hadoop28</id> + <dependencies> + <dependency> + <groupId>org.apache.hadoop</groupId> + <artifactId>hadoop-hdfs-client</artifactId> + <version>${hadoop.version}</version> + </dependency> + </dependencies> + </profile> + </profiles> </project>
