Search Gradle plugins

com.palantir.suppressible-error-prone

Extends the Gradle Error Prone Plugin and Error Prone itself to support automatically suppressing errors.

https://github.com/palantir/suppressible-error-prone

Sources: https://github.com/palantir/suppressible-error-prone

Version 1.3.0 (latest)

1.3.0

Created 06 November 2024.

Extends the Gradle Error Prone Plugin and Error Prone itself to support automatically suppressing errors.

Using the plugins DSL:

plugins {
  id("com.palantir.suppressible-error-prone") version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.palantir.suppressible-error-prone:gradle-suppressible-error-prone:1.3.0")
  }
}

apply(plugin = "com.palantir.suppressible-error-prone")

Using the plugins DSL:

plugins {
  id "com.palantir.suppressible-error-prone" version "1.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.palantir.suppressible-error-prone:gradle-suppressible-error-prone:1.3.0"
  }
}

apply plugin: "com.palantir.suppressible-error-prone"

Learn how to apply plugins to subprojects