Search Gradle plugins

Version 4.1.0 (latest)

4.1.0

Created 20 October 2024.

Gradle plugin to use Error Prone with the Java compiler

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.ltgt.errorprone") version "4.1.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.ltgt.gradle:gradle-errorprone-plugin:4.1.0")
      }
    }
    
    apply(plugin = "net.ltgt.errorprone")
  • Applying plugins to all subprojects .