com.github.rmee.build-on-change
Owner: hallowelt
Incrementally build Pull Requests based on Git history
https://github.com/rmee/gradle-plugins/tree/master/build-on-change
Sources: https://github.com/rmee/gradle-plugins
Version 1.1.20200614081240 (latest)
1.1.20200614081240
Created 14 June 2020.
Incrementally build pull Requests based on changes from Git history
Using the plugins DSL:
plugins {
id("com.github.rmee.build-on-change") version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.rmee:build-on-change:1.1.20200614081240")
}
}
apply(plugin = "com.github.rmee.build-on-change")
Using the plugins DSL:
plugins {
id "com.github.rmee.build-on-change" version "1.1.20200614081240"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.rmee:build-on-change:1.1.20200614081240"
}
}
apply plugin: "com.github.rmee.build-on-change"