Search Gradle plugins

org.inferred.processors

Clean integration of Java 6+ annotation processors with the Eclipse and IDEA plugins

https://github.com/palantir/gradle-processors

Sources: https://github.com/palantir/gradle-processors

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.inferred.processors") version "1.0.2-beta3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.inferred:gradle-processors:1.0.2-beta3")
      }
    }
    
    apply(plugin = "org.inferred.processors")
  • Applying plugins to all subprojects .