Repository: ambari Updated Branches: refs/heads/branch-2.1 81dc95fd9 -> 96f64f680
AMBARI-11847: [WinTP2] Skip building hive view on Windows (jluniya) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/96f64f68 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/96f64f68 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/96f64f68 Branch: refs/heads/branch-2.1 Commit: 96f64f68075ee2da37407dc96dd47f42050ebbef Parents: 81dc95f Author: Jayush Luniya <[email protected]> Authored: Wed Jun 10 12:55:11 2015 -0700 Committer: Jayush Luniya <[email protected]> Committed: Wed Jun 10 12:56:48 2015 -0700 ---------------------------------------------------------------------- contrib/views/pom.xml | 14 +++++++++++++- pom.xml | 1 - 2 files changed, 13 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/96f64f68/contrib/views/pom.xml ---------------------------------------------------------------------- diff --git a/contrib/views/pom.xml b/contrib/views/pom.xml index c304e12..ad8ae8c 100644 --- a/contrib/views/pom.xml +++ b/contrib/views/pom.xml @@ -38,7 +38,6 @@ <module>pig</module> <module>slider</module> <module>capacity-scheduler</module> - <module>hive</module> <module>tez</module> <module>utils</module> </modules> @@ -146,6 +145,19 @@ </plugin> </plugins> </build> + <profiles> + <profile> + <id>linux</id> + <activation> + <os> + <family>unix</family> + </os> + </activation> + <modules> + <module>hive</module> + </modules> + </profile> + </profiles> <dependencyManagement> <dependencies> <dependency> http://git-wip-us.apache.org/repos/asf/ambari/blob/96f64f68/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 15cd030..513f780 100644 --- a/pom.xml +++ b/pom.xml @@ -480,7 +480,6 @@ <module>ambari-project</module> <module>ambari-views</module> <module>ambari-admin</module> - <module>contrib/ambari-scom/metrics-sink</module> <module>ambari-metrics</module> <module>ambari-server</module> <module>ambari-agent</module>
