Search Gradle plugins

info.kadaan.processors

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

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

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

Version 1.1.2 (latest)

1.1.2

Created 09 December 2015.

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("info.kadaan.processors") version "1.1.2"
}

See also:

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