fixing(gradle)

This commit is contained in:
2025-08-24 21:31:31 +02:00
parent 8d01fa0e9a
commit 89ef9698af
77 changed files with 2060 additions and 1656 deletions
@@ -20,3 +20,17 @@ dependencies {
api(libs.spring.boot.starter.test)
api(libs.h2.driver)
}
tasks.withType<Test> {
useJUnitPlatform()
systemProperty("junit.jupiter.execution.parallel.enabled", "true")
systemProperty("junit.jupiter.execution.parallel.mode.default", "concurrent")
doFirst {
val agent = configurations.testRuntimeClasspath.get().files.find {
it.name.startsWith("byte-buddy-agent")
}
if (agent != null) {
jvmArgs("-javaagent:${agent.absolutePath}")
}
}
}