Repository: hive Updated Branches: refs/heads/branch-1.2 d35a56f6b -> e99a89da9
HIVE-10949 : Disable hive-minikdc tests in Windows (Hari Subramaniyan, reviewed by Vaibhav Gumashta) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/e99a89da Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/e99a89da Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/e99a89da Branch: refs/heads/branch-1.2 Commit: e99a89da94c5f6170073372f92bc5f98da4e2faa Parents: d35a56f Author: Hari Subramaniyan <[email protected]> Authored: Wed Jun 10 16:08:11 2015 -0700 Committer: Hari Subramaniyan <[email protected]> Committed: Wed Jun 10 16:08:57 2015 -0700 ---------------------------------------------------------------------- itests/hive-minikdc/pom.xml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/e99a89da/itests/hive-minikdc/pom.xml ---------------------------------------------------------------------- diff --git a/itests/hive-minikdc/pom.xml b/itests/hive-minikdc/pom.xml index 0d24eb1..a413464 100644 --- a/itests/hive-minikdc/pom.xml +++ b/itests/hive-minikdc/pom.xml @@ -29,6 +29,7 @@ <properties> <hive.path.to.root>../..</hive.path.to.root> + <exclude.tests>None</exclude.tests> </properties> <dependencies> @@ -265,6 +266,16 @@ </dependency> </dependencies> </profile> + <profile> + <activation> + <os> + <family>Windows</family> + </os> + </activation> + <properties> + <exclude.tests>**/*.java</exclude.tests> + </properties> + </profile> </profiles> <build> @@ -275,6 +286,15 @@ <inherited>true</inherited> <extensions>true</extensions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <excludes> + <exclude>${exclude.tests}</exclude> + </excludes> + </configuration> + </plugin> </plugins> </build>
