Skip OSGi tests with IBM JDK
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/321b2f8b Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/321b2f8b Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/321b2f8b Branch: refs/heads/master Commit: 321b2f8b66bf6b9d1fa68aba086c8cddf18070e3 Parents: caf903f Author: Colm O hEigeartaigh <[email protected]> Authored: Mon Oct 5 12:05:31 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Mon Oct 5 14:40:26 2015 +0100 ---------------------------------------------------------------------- services/sts/systests/sts-itests/pom.xml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/321b2f8b/services/sts/systests/sts-itests/pom.xml ---------------------------------------------------------------------- diff --git a/services/sts/systests/sts-itests/pom.xml b/services/sts/systests/sts-itests/pom.xml index 5bf4f7c..11b3940 100644 --- a/services/sts/systests/sts-itests/pom.xml +++ b/services/sts/systests/sts-itests/pom.xml @@ -164,4 +164,20 @@ </plugins> </pluginManagement> </build> + + <profiles> + <profile> + <id>ibm</id> + <activation> + <property> + <name>java.vendor</name> + <value>IBM Corporation</value> + </property> + </activation> + <properties> + <maven.test.skip>true</maven.test.skip> + </properties> + </profile> + </profiles> + </project>
