Repository: camel Updated Branches: refs/heads/master fef296eee -> 066ab818b
CAMEL-8445: Skip test on windows as NPE in hadoop Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/066ab818 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/066ab818 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/066ab818 Branch: refs/heads/master Commit: 066ab818b99e37e5643d2e76f036c02df360c75b Parents: fef296e Author: Claus Ibsen <davscl...@apache.org> Authored: Fri Mar 6 11:15:41 2015 +0100 Committer: Claus Ibsen <davscl...@apache.org> Committed: Fri Mar 6 11:15:41 2015 +0100 ---------------------------------------------------------------------- components/camel-hdfs2/pom.xml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/066ab818/components/camel-hdfs2/pom.xml ---------------------------------------------------------------------- diff --git a/components/camel-hdfs2/pom.xml b/components/camel-hdfs2/pom.xml index fc1d73d..861aa9f 100644 --- a/components/camel-hdfs2/pom.xml +++ b/components/camel-hdfs2/pom.xml @@ -130,4 +130,19 @@ </dependencies> + <!-- skip tests on Windows due CAMEL-8445 --> + <profiles> + <profile> + <id>windows</id> + <activation> + <os> + <family>Windows</family> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> + </profiles> + </project>