We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd05d7d commit fe5c7aeCopy full SHA for fe5c7ae
2 files changed
build.gradle.kts
@@ -154,6 +154,11 @@ tasks {
154
publishPlugin {
155
dependsOn(patchChangelog)
156
}
157
+
158
+ // Disable buildSearchableOptions task to prevent verification failures
159
+ buildSearchableOptions {
160
+ enabled = false
161
+ }
162
163
164
intellijPlatformTesting {
gradle.properties
@@ -31,7 +31,8 @@ org.gradle.configuration-cache = true
31
32
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
33
org.gradle.caching = true
34
-
+# JVM memory settings for Gradle daemon and buildSearchableOptions
35
+org.gradle.jvmargs=-Xmx8g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
36
# Kotlin compiler memory settings
37
kotlin.daemon.jvmargs=-Xmx4g
38
0 commit comments