mirror of
https://github.com/JetBrains/intellij-platform-plugin-template.git
synced 2024-10-27 20:44:05 +00:00
Enable Gradle Build Cache (#358)
Enable Gradle Build Cache --------- Co-authored-by: KotlinIsland <kotlinisland@users.noreply.github.com> Co-authored-by: Jakub Chrzanowski <jakub.chrzanowski@jetbrains.com>
This commit is contained in:
parent
268526dc73
commit
8048216194
3
.github/template-cleanup/gradle.properties
vendored
3
.github/template-cleanup/gradle.properties
vendored
@ -27,6 +27,9 @@ kotlin.stdlib.default.dependency = false
|
|||||||
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
|
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
|
||||||
org.gradle.unsafe.configuration-cache = true
|
org.gradle.unsafe.configuration-cache = true
|
||||||
|
|
||||||
|
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
|
||||||
|
org.gradle.caching = true
|
||||||
|
|
||||||
# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
|
# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
|
||||||
systemProp.org.gradle.unsafe.kotlin.assignment = true
|
systemProp.org.gradle.unsafe.kotlin.assignment = true
|
||||||
|
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
- Temporary workaround for Kotlin Compiler OutOfMemoryError -> https://jb.gg/intellij-platform-kotlin-oom
|
- Temporary workaround for Kotlin Compiler OutOfMemoryError -> https://jb.gg/intellij-platform-kotlin-oom
|
||||||
- Gradle version catalog integration
|
- Gradle version catalog integration
|
||||||
- Gradle Kotlin DSL Lazy Property Assignment
|
- Gradle Kotlin DSL Lazy Property Assignment
|
||||||
|
- Enable Gradle Build Cache
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Dependencies - upgrade `org.jetbrains.intellij` to `1.13.3`
|
- Dependencies - upgrade `org.jetbrains.intellij` to `1.13.3`
|
||||||
|
@ -27,6 +27,9 @@ kotlin.stdlib.default.dependency = false
|
|||||||
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
|
# Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
|
||||||
org.gradle.unsafe.configuration-cache = true
|
org.gradle.unsafe.configuration-cache = true
|
||||||
|
|
||||||
|
# Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
|
||||||
|
org.gradle.caching = true
|
||||||
|
|
||||||
# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
|
# Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
|
||||||
systemProp.org.gradle.unsafe.kotlin.assignment = true
|
systemProp.org.gradle.unsafe.kotlin.assignment = true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user