This is an automated email from the ASF dual-hosted git repository.
szetszwo pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new da3f90bc3 RATIS-2169. mvnw test: Corrupted STDOUT by directly writing
to native stream in forked JVM 1 (#1162)
da3f90bc3 is described below
commit da3f90bc3a839bfb61b4d518b04eff93e1ee9071
Author: Tsz-Wo Nicholas Sze <[email protected]>
AuthorDate: Mon Oct 7 12:09:21 2024 -0700
RATIS-2169. mvnw test: Corrupted STDOUT by directly writing to native
stream in forked JVM 1 (#1162)
---
pom.xml | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/pom.xml b/pom.xml
index 1284e2f87..ce6a1abda 100644
--- a/pom.xml
+++ b/pom.xml
@@ -223,8 +223,8 @@
<testsThreadCount>4</testsThreadCount>
<slf4j.version>2.0.7</slf4j.version>
- <junit.jupiter.version>5.10.1</junit.jupiter.version>
- <jacoco.version>0.8.11</jacoco.version>
+ <junit-bom.version>5.11.2</junit-bom.version>
+ <jacoco.version>0.8.12</jacoco.version>
</properties>
<dependencyManagement>
@@ -427,7 +427,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
- <version>${junit.jupiter.version}</version>
+ <version>${junit-bom.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -643,7 +643,7 @@
<enableProcessChecker>all</enableProcessChecker>
<forkedProcessTimeoutInSeconds>600</forkedProcessTimeoutInSeconds>
<!-- @argLine is filled by jacoco maven plugin. @{} means late
evaluation -->
- <argLine>-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError
@{argLine}</argLine>
+ <argLine>-Xmx2g -XX:+HeapDumpOnOutOfMemoryError
@{argLine}</argLine>
<systemPropertyVariables>
<ratis.log.dir>${project.build.directory}/log</ratis.log.dir>
<ratis.tmp.dir>${project.build.directory}/tmp</ratis.tmp.dir>