chore(build): 테스트 실행 메모리 설정을 조정한다

This commit is contained in:
2026-07-07 20:53:08 +09:00
parent f100e11861
commit 8b2d26c7d3

View File

@@ -99,9 +99,16 @@ tasks.withType<KotlinCompile> {
} }
} }
tasks.withType<Test> { tasks.withType<Test>().configureEach {
useJUnitPlatform() maxParallelForks = 1
maxHeapSize = "1536m" forkEvery = 100
maxHeapSize = "1024m"
jvmArgs(
"-XX:MaxMetaspaceSize=512m",
"-Dfile.encoding=UTF-8"
)
} }
tasks.getByName<Jar>("jar") { tasks.getByName<Jar>("jar") {