Skip the unit tests of camel-leveldb in HP-UX
Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/bb3e3995 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/bb3e3995 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/bb3e3995 Branch: refs/heads/camel-2.15.x Commit: bb3e39951c0b12a36352effcbd4f4693d0b39400 Parents: 3161e05 Author: Willem Jiang <[email protected]> Authored: Tue Apr 14 13:48:56 2015 +0800 Committer: Willem Jiang <[email protected]> Committed: Tue Apr 14 14:08:21 2015 +0800 ---------------------------------------------------------------------- components/camel-leveldb/pom.xml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/bb3e3995/components/camel-leveldb/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-leveldb/pom.xml b/components/camel-leveldb/pom.xml index c4945fb..f275296 100644 --- a/components/camel-leveldb/pom.xml +++ b/components/camel-leveldb/pom.xml @@ -87,7 +87,7 @@ </plugins> </build> - <!-- skip tests on Windows and AIX --> + <!-- skip tests on Windows, AIX and HP-UX --> <profiles> <profile> <id>windows</id> @@ -111,5 +111,16 @@ <skipTests>true</skipTests> </properties> </profile> + <profile> + <id>hpux</id> + <activation> + <os> + <family>HP-UX</family> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> </profiles> </project>
