Update surefire plugin versions
This commit is contained in:
parent
ebccde9543
commit
4735d38d7b
4
pom.xml
4
pom.xml
|
@ -726,7 +726,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>2.14.1</version>
|
<version>2.18.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<forkMode>once</forkMode>
|
<forkMode>once</forkMode>
|
||||||
<testFailureIgnore>true</testFailureIgnore>
|
<testFailureIgnore>true</testFailureIgnore>
|
||||||
|
@ -738,7 +738,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-report-plugin</artifactId>
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
||||||
<version>2.14.1</version>
|
<version>2.18.1</version>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
|
|
@ -211,6 +211,7 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
|
<version>2.18.1</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<skipTests>${skipExtraTests}</skipTests>
|
<skipTests>${skipExtraTests}</skipTests>
|
||||||
<!-- ensure we don't inherit a byteman jar form any env settings -->
|
<!-- ensure we don't inherit a byteman jar form any env settings -->
|
||||||
|
@ -239,11 +240,15 @@
|
||||||
</systemProperties>
|
</systemProperties>
|
||||||
<!-- make sure maven puts the byteman jar in the classpath rather than in a manifest jar -->
|
<!-- make sure maven puts the byteman jar in the classpath rather than in a manifest jar -->
|
||||||
<useManifestOnlyJar>false</useManifestOnlyJar>
|
<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>
|
<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>-->
|
<!--<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. -->
|
<!-- '-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>
|
<argLine>${activemq-surefire-argline} -noverify</argLine>
|
||||||
|
|
Loading…
Reference in New Issue