Repository: activemq-artemis Updated Branches: refs/heads/master ebccde954 -> 9a81e201e
Update surefire plugin versions Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/4735d38d Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/4735d38d Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/4735d38d Branch: refs/heads/master Commit: 4735d38d7bfdbbed6d5b2f0fae6c6c6629a5dc12 Parents: ebccde9 Author: jbertram <[email protected]> Authored: Wed May 6 11:15:33 2015 -0500 Committer: jbertram <[email protected]> Committed: Wed May 6 15:05:49 2015 -0500 ---------------------------------------------------------------------- pom.xml | 4 ++-- tests/extra-tests/pom.xml | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/4735d38d/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 5bf0be8..fa845b6 100644 --- a/pom.xml +++ b/pom.xml @@ -726,7 +726,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>2.14.1</version> + <version>2.18.1</version> <configuration> <forkMode>once</forkMode> <testFailureIgnore>true</testFailureIgnore> @@ -738,7 +738,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> - <version>2.14.1</version> + <version>2.18.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/4735d38d/tests/extra-tests/pom.xml ---------------------------------------------------------------------- diff --git a/tests/extra-tests/pom.xml b/tests/extra-tests/pom.xml index 8727e62..7d7e2cc 100644 --- a/tests/extra-tests/pom.xml +++ b/tests/extra-tests/pom.xml @@ -211,6 +211,7 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> + <version>2.18.1</version> <configuration> <skipTests>${skipExtraTests}</skipTests> <!-- ensure we don't inherit a byteman jar form any env settings --> @@ -239,11 +240,15 @@ </systemProperties> <!-- make sure maven puts the byteman jar in the classpath rather than in a manifest jar --> <useManifestOnlyJar>false</useManifestOnlyJar> - <forkMode>once</forkMode> + <!-- when upgrading this plugin from 2.4 to 2.18.1 <forkMode>once</forkMode> was replaced with these: --> + <forkCount>1</forkCount> + <reuseForks>true</reuseForks> <!-- <debugForkedProcess>true</debugForkedProcess> --> - <parallel>false</parallel> + + <!-- the option <parallel>false</parallel> is not supported after the plugin upgrade from 2.4 to 2.18.1 --> + <!--<argLine>${activemq-surefire-argline} -Dorg.jboss.byteman.verbose -Dorg.jboss.byteman.contrib.bmunit.verbose</argLine>--> <!-- '-noverify' is needed here to fix VerifyErrors on ScaleDownFailoverTest and ScaleDownFailureTest (and their subclasses). I got the tip from https://issues.jboss.org/browse/BYTEMAN-248. --> <argLine>${activemq-surefire-argline} -noverify</argLine>
