blob: 238558d1cc0f79bcdc026c93e9c094a4a9437682 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>stacks-common</artifactId>
<version>1.6.0-SNAPSHOT</version>
<relativePath>../common/pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>smoke-tests</artifactId>
<packaging>pom</packaging>
<version>1.6.0-SNAPSHOT</version>
<name>hadoop-stack-validation</name>
<properties>
<itest-conf.version>${project.version}</itest-conf.version>
<itest-common.version>${project.version}</itest-common.version>
<hadoop-smoke.version>${project.version}</hadoop-smoke.version>
<httpfs-smoke.version>${project.version}</httpfs-smoke.version>
<hbase-smoke.version>${project.version}</hbase-smoke.version>
<hive-smoke.version>${project.version}</hive-smoke.version>
<oozie-smoke.version>${project.version}</oozie-smoke.version>
<hue-smoke.version>${project.version}</hue-smoke.version>
<package-smoke.version>${project.version}</package-smoke.version>
<solr-smoke.version>${project.version}</solr-smoke.version>
<hcatalog-smoke.version>${project.version}</hcatalog-smoke.version>
<phoenix-smoke.version>${project.version}</phoenix-smoke.version>
</properties>
<!--
List of modules which should be executed as a part of stack testing run
-->
<modules>
<module>hive</module>
<module>hadoop</module>
<module>oozie</module>
<module>hbase</module>
<module>hue</module>
<!--
<module>httpfs</module>
<module>sqoop</module>
-->
<module>hcatalog</module>
<module>phoenix</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- Import configuration resources for the stack validation -->
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>smoke-tests-conf</artifactId>
<version>${itest-conf.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>hadoop-smoke</artifactId>
<version>${hadoop-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>hbase-smoke</artifactId>
<version>${hbase-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>hive-smoke</artifactId>
<version>${hive-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>oozie-smoke</artifactId>
<version>${oozie-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>hue-smoke</artifactId>
<version>${hue-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>package-smoke</artifactId>
<version>${package-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>hcatalog-smoke</artifactId>
<version>${hcatalog-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>phoenix-smoke</artifactId>
<version>${phoenix-smoke.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>httpfs-smoke</artifactId>
<version>${httpfs-smoke.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- We have to be configured in order to function properly -->
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>smoke-tests-conf</artifactId>
<scope>test</scope>
</dependency>
<!-- Turn them on for all children -->
<dependency>
<groupId>org.apache.bigtop.itest</groupId>
<artifactId>itest-common</artifactId>
<scope>test</scope>
</dependency>
<!-- Gmaven plugin enables a lot of runtime flexibility for us -->
<dependency>
<groupId>org.codehaus.groovy.maven.runtime</groupId>
<artifactId>gmaven-runtime-1.6</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
</plugin>
<!-- Enabling gmaven plugin -->
<plugin>
<groupId>org.codehaus.groovy.maven</groupId>
<artifactId>gmaven-plugin</artifactId>
</plugin>
<!-- Enabling tests execution -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
</plugin>
<!--Let's skip unit tests all together for there are none-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.11</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
<!-- The following plugins must be enabled inside modules in order to work -->
</build>
</project>