Gradle Errorprone Plugin Versions Save

Gradle plugin to use the error-prone compiler for Java

v3.1.0

1 year ago

Avoid forking if Gradle already has appropriate --add-exports/--add-opens passed through the org.gradle.jvmargs property.

:sparkles: Potentially breaking changes

When using JDK 16+, users configuring additional JVM arguments on their compile tasks and expecting a forked compiler daemon from the plugin should now explicitly configure the tasks to fork if they want their JVM arguments to be enforced in all cases.

v3.0.1

1 year ago

Fixes Gradle Module Metadata to target Java 8 (#73), otherwise strictly identical to 3.0.0.

v3.0.0

1 year ago

:biohazard: Known issues

The Gradle Module Metadata for the 3.0.0 release includes a org.gradle.jvm.version attribute with an incorrect value. This will break builds using a JDK < 17 (#73). This is fixed in version 3.0.1.

:boom: Breaking changes

  • Remove support for Android (2c4afc6fc02e943e5920719b5c4f4ae78fedeac5): the plugin should still be usable within Android projects, but compile tasks will have to be configured manually: ErrorProne is no longer added to the annotation processor path, ErrorProne is disabled by default, and isCompilingTestOnlyCode is no longer configured based on the type of variant.
  • Require Gradle 6.8 at a minimum (7410cc0b1d9025319ab4dd9c9d1d91f3cacc2a05)

:sparkles: Potentially breaking changes

  • Fork options are no longer reset when the plugin configures forking (c032f7da20f429c31d94bf5fe19db7f61b8d2449, 8958d2990a14b58184dc4c329a411fd963ac3f83): any fork option that was configured despite the task not forking will now apply when the plugin determines that the task should fork, and ErrorProne-specific fork options are now additive to those previously-configured options.
  • ErrorProne Javac is now declared as a default dependency of the errorproneJavac configuration (72a842caeb9b65600f21433ee0f025a7e4f92aad): ErrorProne no longer supports JDK 8 (since 2.11.0), so this dependency won't change, and can thus be defaulted to the latest version (released nearly 5 years ago)
  • Strong encapsulation JVM arguments are now configured for all JDK 9+, rather than JDK 16+ (423cbfa7aa0ca67f03a7f9fb93b8544164d4f0be): those arguments won't be used unless forking is explicitly configured though; forking still is only configured by the plugin for JDK 8 or JDK 16+, not JDK 9–15.
  • Use jvmArgumentProvides in Gradle 7.1+ (ffef94dcdfedd1c95464394411922c8ee9dc7c06)

:memo: Upgrading

You can safely remove errorproneJavac("com.google.errorprone:javac:9+181-r4173-1") from your dependencies as this is now added by default.

Also make sure you do not configure any fork option while not enabling forking, that would cause any error if forking was enabled, as those options will be retained when the plugin configures forking.

v2.0.2

2 years ago

Fix configuration-cache compatibility (#59, bb2c9c7238b933dc45ad5453ab0b74522824c4ac)

v2.0.1

3 years ago

Add --add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED when using JDK 16+; this fixes an IllegalAccessError with some ErrorProne checks (#58, https://github.com/google/error-prone/issues/2250, 4494aa521c3e7b9d37003cda4045cadad6841533)

v2.0.0

3 years ago
  • :sparkles: Add specific support for JDK 16 (#57, 89eeb78aaaa7460dea2d3b20d7afe4a7fcba6a5a)
  • :boom: Remove support for the deprecated com.android.feature and com.android.instantapp plugins (aab1b9451edc743fd92bf4a17a235c6d2a7f7881)

v1.3.1

3 years ago

Fix regression in v1.3.0 where the errorproneJavac configuration was resolved even when not using JDK 8, in Gradle 6.7+ (as a side-effect to adding toolchains support). This would lead to either resolving an unnecessary 6.5Mb file, or printing a warning that com.google.errorprone:javac is missing in errorproneJavac.

Add KDoc to the DSL extension, in the hope that it's picked up by IDEs (no additional artifact is generated)

v1.3.0

3 years ago

Add support for Gradle 6.7 Toolchains

v1.2.1

3 years ago

Add support for -XepDisableAllWarnings (d467eb2f039d017b5f91b9a19ef3386575c29a7e)

v1.2.0

3 years ago
  • Enable ErrorProne on applicationVariants when using com.android.dynamic-feature plugin (1f3c3d96542760f38d794f8b3e39b8489998c487)
  • Compatibility with Gradle 6.5's new Configuration Cache (ac129991098298f02bea6d83f96de1666df4d6cd)