Repository: cxf-fediz Updated Branches: refs/heads/master f71bbe651 -> c953c8117
Skip the Jetty8 systests with JDK8 Project: http://git-wip-us.apache.org/repos/asf/cxf-fediz/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf-fediz/commit/a579f4ec Tree: http://git-wip-us.apache.org/repos/asf/cxf-fediz/tree/a579f4ec Diff: http://git-wip-us.apache.org/repos/asf/cxf-fediz/diff/a579f4ec Branch: refs/heads/master Commit: a579f4ec69b419f5a4f1aa00b183d559d90d105b Parents: f71bbe6 Author: Colm O hEigeartaigh <[email protected]> Authored: Mon Sep 21 13:30:22 2015 +0100 Committer: Colm O hEigeartaigh <[email protected]> Committed: Mon Sep 21 13:30:22 2015 +0100 ---------------------------------------------------------------------- systests/jetty8/pom.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf-fediz/blob/a579f4ec/systests/jetty8/pom.xml ---------------------------------------------------------------------- diff --git a/systests/jetty8/pom.xml b/systests/jetty8/pom.xml index d22147e..7d7badd 100644 --- a/systests/jetty8/pom.xml +++ b/systests/jetty8/pom.xml @@ -232,4 +232,30 @@ </plugin> </plugins> </build> + + <profiles> + <!-- Skip Jetty8 tests if we are using JDK8 --> + <profile> + <id>jdk18</id> + <activation> + <jdk>1.8</jdk> + </activation> + <build> + <pluginManagement> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-failsafe-plugin</artifactId> + <inherited>true</inherited> + <configuration> + <excludes> + <exclude>**/integrationtests/**</exclude> + </excludes> + </configuration> + </plugin> + </plugins> + </pluginManagement> + </build> + </profile> + </profiles> </project>
