com.github.rmee.build-on-change
所有者: hallowelt
基于Git历史增量构建拉取请求
https://github.com/rmee/gradle-plugins/tree/master/build-on-change
源代码: https://github.com/rmee/gradle-plugins
使用 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"