搜索 Gradle 插件

版本 0.2.1(最新版本)

0.2.1

创建于 2019 年 5 月 21 日。

Android 构建自动化的自定义构建自动化插件。

使用 插件 DSL

plugins {
  id("com.github.aman400.gradlebot") version "0.2.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.aman400.gradlebot:GradleBotPlugin:0.2.1")
  }
}

apply(plugin = "com.github.aman400.gradlebot")

使用 插件 DSL

plugins {
  id "com.github.aman400.gradlebot" version "0.2.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.aman400.gradlebot:GradleBotPlugin:0.2.1"
  }
}

apply plugin: "com.github.aman400.gradlebot"

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