Search Gradle plugins

Version 1.0.7 (latest)

1.0.7

Created 11 August 2023.

A plugin for inject annotation transfrom process

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.johnshazhu.lib_annotation_transform") version "1.0.7"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.johnshazhu:lib_annotation_transform:1.0.7")
      }
    }
    
    apply(plugin = "io.github.johnshazhu.lib_annotation_transform")
  • Applying plugins to all subprojects .