fixing(gradle)

This commit is contained in:
2025-08-28 21:07:20 +02:00
parent 2c2dcd381c
commit 20788bde91
19 changed files with 495 additions and 333 deletions
+2 -10
View File
@@ -23,14 +23,6 @@ dependencies {
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}")
}
}
// Removed parallel execution and byte-buddy agent configuration to prevent conflicts
// with global test configuration in root build.gradle.kts
}