Skip to content

Commit 95ff3c5

Browse files
committed
up
1 parent 0a4199a commit 95ff3c5

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

gradle.properties

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ pluginUntilBuild = 232.*
1212

1313
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1414
platformType = 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 =
2222
javaVersion = 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"
3030
kotlin.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

0 commit comments

Comments
 (0)