You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2021/02/25 07:05:59 UTC

[accumulo] branch main updated: Lower the version of surefire/failsafe

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new 589c1bc  Lower the version of surefire/failsafe
589c1bc is described below

commit 589c1bcb29c7589dd3505cbea0d091f513266c65
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Thu Feb 25 02:05:35 2021 -0500

    Lower the version of surefire/failsafe
    
    PR #1941 caused ShellServerIT.scansWithClassLoaderContext and
    RowHashIT.test to fail with difficult-to-debug errors, caused by the
    version of failsafe-maven-plugin (3.0.0-M5). This reverts to the highest
    version of surefire/failsafe that is known to work (3.0.0-M4).
---
 pom.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index fb790a8..a7110fe 100644
--- a/pom.xml
+++ b/pom.xml
@@ -150,7 +150,8 @@
     <surefire.failIfNoSpecifiedTests>false</surefire.failIfNoSpecifiedTests>
     <surefire.forkCount>1C</surefire.forkCount>
     <surefire.groups />
-    <surefire.version>3.0.0-M5</surefire.version>
+    <!-- 3.0.0-M5 causes RowHashIT.test and ShellServerIT.scansWithClassLoaderContext to fail -->
+    <surefire.version>3.0.0-M4</surefire.version>
     <!-- Thrift version -->
     <thrift.version>0.12.0</thrift.version>
     <unitTestMemSize>-Xmx1G</unitTestMemSize>