From 85f3c6f6461dfd862e7ecf340884ab7666a89fc4 Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 10 Jul 2026 16:45:22 +0900 Subject: [PATCH] =?UTF-8?q?chore(build):=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20J?= =?UTF-8?q?VM=20=EB=A9=94=EB=AA=A8=EB=A6=AC=20=EC=84=A4=EC=A0=95=EC=9D=84?= =?UTF-8?q?=20=EC=A1=B0=EC=A0=95=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 1bb52d42..202c0af7 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -102,13 +102,12 @@ tasks.withType { tasks.withType { useJUnitPlatform() - val springContextCacheMaxSize = "1" - maxHeapSize = "1024m" + val springContextCacheMaxSize = (project.findProperty("test.springContextCacheMaxSize") as String?) ?: "1" + maxHeapSize = (project.findProperty("testMaxHeap") as String?) ?: "1536m" maxParallelForks = 1 jvmArgs( "-Dfile.encoding=UTF-8", - "-XX:+HeapDumpOnOutOfMemoryError", "-Dspring.test.context.cache.maxSize=$springContextCacheMaxSize" ) } -- 2.49.1