From 936e472d513bf78cdb9b1271e52156d01a75c691 Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 8 Jul 2026 01:26:17 +0900 Subject: [PATCH] =?UTF-8?q?chore(build):=20=ED=85=8C=EC=8A=A4=ED=8A=B8=20J?= =?UTF-8?q?VM=20=EC=84=A4=EC=A0=95=EC=9D=84=20=EC=A1=B0=EC=A0=95=ED=95=9C?= =?UTF-8?q?=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 74a72e4f..2b83d7d5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -99,15 +99,15 @@ tasks.withType { } } -tasks.withType().configureEach { - maxParallelForks = 1 - forkEvery = 100 +tasks.withType { + useJUnitPlatform() - maxHeapSize = "1024m" + val springContextCacheMaxSize = (project.findProperty("test.springContextCacheMaxSize") as String?) ?: "1" + maxHeapSize = (project.findProperty("testMaxHeap") as String?) ?: "1536m" jvmArgs( - "-XX:MaxMetaspaceSize=512m", - "-Dfile.encoding=UTF-8" + "-Dfile.encoding=UTF-8", + "-Dspring.test.context.cache.maxSize=$springContextCacheMaxSize" ) }