From ab9284e120726ab0c05cf84d4077b56b2f3dd43d Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 29 Jul 2020 17:43:27 +0100 Subject: [PATCH] Increase max heap of the Maven JVM The overhead of build scans seems to have brought us right to the limit of the Maven JVM's heap. As a result, builds are occasionally failing as the heap's been exhausted. This commit increases the JVM's max heap. Closes gh-22649 --- .mvn/jvm.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mvn/jvm.config b/.mvn/jvm.config index f432c96022..15e6c97bc8 100644 --- a/.mvn/jvm.config +++ b/.mvn/jvm.config @@ -1 +1 @@ --Xmx1536m \ No newline at end of file +-Xmx2048m \ No newline at end of file