Try to fix random failures in pax-exam tests by forking per test
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/fd33282d Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/fd33282d Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/fd33282d Branch: refs/heads/3.1.x-fixes Commit: fd33282da576997a31962ca7ea4dfdf653927f82 Parents: 19ebf83 Author: Daniel Kulp <[email protected]> Authored: Mon Mar 6 14:22:11 2017 -0500 Committer: Daniel Kulp <[email protected]> Committed: Tue Mar 7 14:03:45 2017 -0500 ---------------------------------------------------------------------- osgi/itests/pom.xml | 12 ++++++++++++ services/xkms/xkms-itests/pom.xml | 1 + 2 files changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/fd33282d/osgi/itests/pom.xml ---------------------------------------------------------------------- diff --git a/osgi/itests/pom.xml b/osgi/itests/pom.xml index 648b342..5955d00 100644 --- a/osgi/itests/pom.xml +++ b/osgi/itests/pom.xml @@ -201,6 +201,18 @@ </execution> </executions> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <systemPropertyVariables> + <org.ops4j.pax.logging.DefaultServiceLog.level>WARN</org.ops4j.pax.logging.DefaultServiceLog.level> + <karaf.version>${cxf.karaf.version}</karaf.version> + <localRepository>${maven.repo.local}</localRepository> + </systemPropertyVariables> + <reuseForks>false</reuseForks> + </configuration> + </plugin> </plugins> <pluginManagement> <plugins> http://git-wip-us.apache.org/repos/asf/cxf/blob/fd33282d/services/xkms/xkms-itests/pom.xml ---------------------------------------------------------------------- diff --git a/services/xkms/xkms-itests/pom.xml b/services/xkms/xkms-itests/pom.xml index a0bb617..df77d84 100644 --- a/services/xkms/xkms-itests/pom.xml +++ b/services/xkms/xkms-itests/pom.xml @@ -140,6 +140,7 @@ <karaf.version>${cxf.karaf.version}</karaf.version> <localRepository>${maven.repo.local}</localRepository> </systemPropertyVariables> + <reuseForks>false</reuseForks> </configuration> </plugin> </plugins>
