Jetty 9.4.x rerun failing tests count set to 3 and upgrade surefire which supports it for junit5 (#4320)
* rerunFailingTestsCount and test surefire 3.0.0-M4 fixing it for junit5 Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
parent
46dbfda52e
commit
905deeb49a
3
pom.xml
3
pom.xml
|
@ -45,7 +45,7 @@
|
||||||
<jpms-module-name>${bundle-symbolic-name}</jpms-module-name>
|
<jpms-module-name>${bundle-symbolic-name}</jpms-module-name>
|
||||||
|
|
||||||
<!-- some maven plugins versions -->
|
<!-- some maven plugins versions -->
|
||||||
<maven.surefire.version>3.0.0-M3</maven.surefire.version>
|
<maven.surefire.version>3.0.0-M4</maven.surefire.version>
|
||||||
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
|
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
|
||||||
<maven.dependency.plugin.version>3.1.1</maven.dependency.plugin.version>
|
<maven.dependency.plugin.version>3.1.1</maven.dependency.plugin.version>
|
||||||
<maven.resources.plugin.version>3.1.0</maven.resources.plugin.version>
|
<maven.resources.plugin.version>3.1.0</maven.resources.plugin.version>
|
||||||
|
@ -643,6 +643,7 @@
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>${maven.surefire.version}</version>
|
<version>${maven.surefire.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<rerunFailingTestsCount>3</rerunFailingTestsCount>
|
||||||
<forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
|
<forkedProcessTimeoutInSeconds>3600</forkedProcessTimeoutInSeconds>
|
||||||
<argLine>@{argLine} -Dfile.encoding=UTF-8 -Duser.language=en -Duser.region=US -showversion -Xmx1g -Xms1g -XX:+PrintGCDetails</argLine>
|
<argLine>@{argLine} -Dfile.encoding=UTF-8 -Duser.language=en -Duser.region=US -showversion -Xmx1g -Xms1g -XX:+PrintGCDetails</argLine>
|
||||||
<failIfNoTests>false</failIfNoTests>
|
<failIfNoTests>false</failIfNoTests>
|
||||||
|
|
Loading…
Reference in New Issue