搜索 Gradle 插件

使用 插件 DSL

plugins {
  id("com.github.wrdlbrnft.proguard-annotations") version "0.3.0.12"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.ProguardAnnotations:proguard-annotations:0.3.0.12")
  }
}

apply(plugin = "com.github.wrdlbrnft.proguard-annotations")

使用 插件 DSL

plugins {
  id "com.github.wrdlbrnft.proguard-annotations" version "0.3.0.12"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.ProguardAnnotations:proguard-annotations:0.3.0.12"
  }
}

apply plugin: "com.github.wrdlbrnft.proguard-annotations"

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