File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ pluginUntilBuild = 232.*
1212
1313# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1414platformType = IC
15- platformVersion = 2022.3
15+ platformVersion = 2022.1.4
1616
1717# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
1818# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
@@ -22,9 +22,21 @@ platformPlugins =
2222javaVersion = 11
2323
2424# Gradle Releases -> https://github.com/gradle/gradle/releases
25- gradleVersion = 7.3
25+ gradleVersion = 8.1
2626
2727# Opt-out flag for bundling Kotlin standard library.
2828# See https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library for details.
2929# suppress inspection "UnusedProperty"
3030kotlin.stdlib.default.dependency = false
31+
32+ # Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
33+ org.gradle.configuration-cache = true
34+
35+ # Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
36+ org.gradle.caching = true
37+
38+ # Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
39+ systemProp.org.gradle.unsafe.kotlin.assignment = true
40+
41+ # Temporary workaround for Kotlin Compiler OutOfMemoryError -> https://jb.gg/intellij-platform-kotlin-oom
42+ kotlin.incremental.useClasspathSnapshot = false
You can’t perform that action at this time.
0 commit comments