Search Gradle plugins

Version 0.21 (latest)

0.21

Created 03 February 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.21"
}

See also:

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