test #440

Merged
klaus merged 6 commits from test into main 2026-07-15 12:24:50 +00:00
Showing only changes of commit 29f61d75ee - Show all commits

View File

@@ -101,15 +101,8 @@ tasks.withType<KotlinCompile> {
tasks.withType<Test> {
useJUnitPlatform()
val springContextCacheMaxSize = (project.findProperty("test.springContextCacheMaxSize") as String?) ?: "1"
maxHeapSize = (project.findProperty("testMaxHeap") as String?) ?: "1536m"
maxParallelForks = 1
jvmArgs(
"-Dfile.encoding=UTF-8",
"-Dspring.test.context.cache.maxSize=$springContextCacheMaxSize"
)
maxHeapSize = "4096m"
jvmArgs("-Dfile.encoding=UTF-8")
}
tasks.getByName<Jar>("jar") {