gradle.properties 707 B

12345678910111213141516
  1. org.gradle.parallel=true
  2. org.gradle.caching=true
  3. org.gradle.priority=low
  4. # Gradle default is 256m which causes issues with our build - https://docs.gradle.org/current/userguide/build_environment.html#sec:configuring_jvm_memory
  5. org.gradle.jvmargs=-XX:MaxMetaspaceSize=512m
  6. # TODO(anuraaga): Reenable closer to Gradle 8.0. Currently protobuf plugin fails due to bug
  7. # https://github.com/google/protobuf-gradle-plugin/issues/444
  8. # org.gradle.warning.mode=fail
  9. # To allow caching more tasks in buildSrc project
  10. # This property is not mentioned in Gradle documentation
  11. # See https://github.com/gradle/gradle/issues/15214 for background info
  12. systemProp.org.gradle.kotlin.dsl.precompiled.accessors.strict=true