搜索Gradle插件

版本 1.0.7(最新版)

1.0.7

创建于 2023年8月11日。

注入注解转换过程的插件

使用 plugins DSL

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

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.johnshazhu:lib_annotation_transform:1.0.7")
  }
}

apply(plugin = "io.github.johnshazhu.lib_annotation_transform")

使用 plugins DSL

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

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.johnshazhu:lib_annotation_transform:1.0.7"
  }
}

apply plugin: "io.github.johnshazhu.lib_annotation_transform"

了解如何将插件应用于子项目