搜索Gradle插件

版本 1.1.20200614081240 (最新)

1.1.20200614081240

创建于 2020年6月14日。

基于Git历史增量构建拉取请求

使用 plugins DSL

plugins {
  id("com.github.rmee.build-on-change") version "1.1.20200614081240"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.rmee:build-on-change:1.1.20200614081240")
  }
}

apply(plugin = "com.github.rmee.build-on-change")

使用 plugins DSL

plugins {
  id "com.github.rmee.build-on-change" version "1.1.20200614081240"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.rmee:build-on-change:1.1.20200614081240"
  }
}

apply plugin: "com.github.rmee.build-on-change"

学习如何将插件应用到子项目