Search Gradle plugins

Version 0.20

0.20

Created 08 January 2019.

Gradle plugin making it easier/safer to use Java annotation processors

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.ltgt.apt-idea") version "0.20"
}

See also:

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