You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2022/04/12 07:24:59 UTC

[isis] branch master updated: ISIS-2445: surefire: remove JVM Xms setting (forking)

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

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 8300550679 ISIS-2445: surefire: remove JVM Xms setting (forking)
8300550679 is described below

commit 83005506795ce180ee38c0a51f01364f2f47bf2f
Author: Andi Huber <ah...@apache.org>
AuthorDate: Tue Apr 12 09:24:53 2022 +0200

    ISIS-2445: surefire: remove JVM Xms setting (forking)
    
    - no need to specify initial memory size; we only care about the upper
    bound
---
 isis-parent/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/isis-parent/pom.xml b/isis-parent/pom.xml
index 9573865ae9..d8373b6293 100644
--- a/isis-parent/pom.xml
+++ b/isis-parent/pom.xml
@@ -335,7 +335,7 @@ under the License.
 		<lombok.version>1.18.22</lombok.version> <!-- overriding Spring -->
 		<delombok.output>${project.build.directory}/delombok</delombok.output>
 		<surefire.version>3.0.0-M6</surefire.version>
-		<surefire-plugin.argLine>-Xms512m -Xmx512m</surefire-plugin.argLine>
+		<surefire-plugin.argLine>-Xmx512m</surefire-plugin.argLine>
 		<!-- APACHE ISIS customisation 4/15: end -->
 		
 		<assembly.tarLongFileMode>posix</assembly.tarLongFileMode>
@@ -1146,7 +1146,7 @@ under the License.
 				</property>
 			</activation>
 			<properties>
-				<surefire-plugin.argLine>@{argLine} -Xms512m -Xmx512m</surefire-plugin.argLine>
+				<surefire-plugin.argLine>@{argLine} -Xmx512m</surefire-plugin.argLine>
 			</properties>
 			<build>
 				<plugins>