We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 449ff1a commit 1082d85Copy full SHA for 1082d85
build.gradle.kts
@@ -76,6 +76,9 @@ allprojects {
76
jvmArgs("-XX:ErrorFile=${rootProject.file("build/reports").absolutePath}/hs_err_pid%p.log")
77
if (System.getProperty("os.name").contains("Windows")) {
78
jvmArgs("-XX:OnError=powershell.exe ${rootProject.file("dump.ps1")}")
79
+ // Add Windows-specific JVM args to handle file locking
80
+ jvmArgs("-Djava.io.tmpdir=${System.getProperty("java.io.tmpdir")}")
81
+ jvmArgs("-XX:+UnlockExperimentalVMOptions")
82
} else {
83
jvmArgs("-XX:OnError=ps auxww")
84
}
0 commit comments