gradle.properties 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
  2. propertiesPluginEnvironmentNameProperty=platformVersion
  3. # Supported platforms: 222, 233, 241
  4. platformVersion=241
  5. pluginGroup = com.phodal.autodev
  6. pluginName = AutoDev
  7. pluginRepositoryUrl = https://github.com/unit-mesh/auto-dev
  8. # SemVer format -> https://semver.org
  9. pluginVersion = 1.8.13
  10. # Supported IDEs: idea, pycharm
  11. baseIDE=idea
  12. pycharmVersion=PC-2023.2.4
  13. golandVersion=GO-2023.3.2
  14. webstormVersion=WS-2022.2.4
  15. riderVersion=RD-2022.2.4
  16. # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
  17. # Gradle Releases -> https://github.com/gradle/gradle/releases
  18. gradleVersion = 8.1
  19. # Opt-out flag for bundling Kotlin standard library -> https://jb.gg/intellij-platform-kotlin-stdlib
  20. kotlin.stdlib.default.dependency = false
  21. # Enable Gradle Configuration Cache -> https://docs.gradle.org/current/userguide/configuration_cache.html
  22. org.gradle.configuration-cache = true
  23. # Enable Gradle Build Cache -> https://docs.gradle.org/current/userguide/build_cache.html
  24. org.gradle.caching = true
  25. # Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment
  26. systemProp.org.gradle.unsafe.kotlin.assignment = true
  27. # Temporary workaround for Kotlin Compiler OutOfMemoryError -> https://jb.gg/intellij-platform-kotlin-oom
  28. kotlin.incremental.useClasspathSnapshot = false
  29. javaVersion = 17
  30. kotlin.daemon.jvmargs=-Xmx2g
  31. org.gradle.jvmargs =-Xmx2g