Repository: camel Updated Branches: refs/heads/master d4f8bf708 -> f614907c2
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/f614907c Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/f614907c Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/f614907c Branch: refs/heads/master Commit: f614907c2fa1b3edfae28a538e24bc9bc2c678c7 Parents: 98ff00b Author: Willem Jiang <[email protected]> Authored: Tue Apr 14 13:48:56 2015 +0800 Committer: Willem Jiang <[email protected]> Committed: Tue Apr 14 13:49:20 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/f614907c/components/camel-leveldb/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-leveldb/pom.xml b/components/camel-leveldb/pom.xml index e0c643a..0f16331 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>
